
PHP Funktionen : PHP Übersicht : PHP Manual
isset
PHP
Function isset / PHP
Funktion isset
phplist »
Webkatalog Script - Link Script »
PHP Function Coder »
isset
- PHP Funktion
- isset ( phplist Code 100% Relevanz )
- Rubrik
- Funktionen zur Behandlung von Variablen
- Kurzform
- isset -- Prüft die Existenz einer Variablen
- Vorschau
- ...isset isset (PHP 3, PHP 4, PHP 5) isset -- Prüft die Existenz einer Variablen Beschreibung: bool isset ( mixed var [, mixed var [, ...]] ) Diese Funktion liefert TRUE , wenn die Variable oder das Array-Element var existiert, sonst FALSE . Wird eine Variable oder ein Array-Element mit unset() freigegeben, so liefert isset...
- PHP Manual
- [ isset php.net ]
- PHP Funktion
- is_string ( phplist Code 57% Relevanz )
- Rubrik
- Funktionen zur Behandlung von Variablen
- Kurzform
- is_string -- Prüft ob Variable vom Typ string ist
- Vorschau
- ... String ist. Parameter Liste var Die zu untersuchende Variable. Rückgabewerte Gibt TRUE , wenn var vom Typ string ist, andernfalls FALSE . Siehe auch is_float() is_int() is_bool() is_object() is_array() is_scalar isset...
- PHP Manual
- [ is_string php.net ]
- PHP Funktion
- print_r ( phplist Code 33% Relevanz )
- Rubrik
- Funktionen zur Behandlung von Variablen
- Kurzform
- print_r -- Gibt Variablen-Informationen in lesbarer Form aus
- Vorschau
- ...indirekt referenzierte. Ein Beispiel dafür ist print_r($GLOBALS) , weil $GLOBALS selbst eine globale Variable ist, und damit eine Referenz auf sich selbst enthält. Siehe auch ob_start() , var_dump() und var_export() . isset serialize...
- PHP Manual
- [ print_r php.net ]
- PHP Funktion
- ifx_fieldtypes ( phplist Code 32% Relevanz )
- Rubrik
- Informix Funktionen
- Kurzform
- ifx_fieldtypes -- Gibt eine Liste der Informix SQL Felder zurück
- Vorschau
- ... ein assoziatives Array mit den Feldnamen als Schlüssel und den SQL Feldtypen als Daten. Bei einem Fehler wird FALSE gegeben. Beispiel 1. Feldnamen und SQL Feldtypen <?php $types = ifx_fieldtypes ( $resultid ); if (! isset ( $types )) { /* ... error ... */ } foreach ( $types as $fname => $val ) { echo "$fname: \t type = $val \n " ; } ?> ifx_fieldproperties ifx_free_blob...
- PHP Manual
- [ ifx_fieldtypes php.net ]
- PHP Funktion
- SDO Functions ( phplist Code 22% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ...ad_tech_dept -> createDataObject ( 'employees' ); $new_hire -> name = 'John Johnson' ; $new_hire -> SN = 'E0005' ; $new_hire -> manager = false ; ?> Beispiel 11. Unset a primitive property We can use the isset() and unset() functions to test and remove items from the data object. The following clears the name of the first department. <?php unset( $company -> departments [ 0 ]-> name ); ?> Beispiel 12. Unset a data...
- PHP Manual
- [ SDO Functions php.net ]
- PHP Funktion
- Funktionen zur Behandlung von Variablen ( phplist Code 5% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... Variable vom Typ object ist is_real -- Alias von is_float() is_resource -- Prüft, ob eine Variable vom Typ resource ist is_scalar -- Finds whether a variable is a scalar is_string -- Prüft, ob Variable vom Typ string ist isset -- Prüft die Existenz einer Variablen print_r -- Gibt Variablen-Informationen in lesbarer Form aus serialize -- Erzeugt eine speicherbare Repräsentation eines Wertes settype -- Legt den Typ einer Variablen fest strval -- ...
- PHP Manual
- [ Funktionen zur Behandlung von Variablen php.net ]