
PHP Funktionen : PHP Übersicht : PHP Manual
unset
PHP
Function unset / PHP
Funktion unset
phplist »
Webkatalog Script - Link Script »
PHP Function Coder »
unset
- PHP Funktion
- unset ( phplist Code 100% Relevanz )
- Rubrik
- Funktionen zur Behandlung von Variablen
- Kurzform
- unset -- Löschen einer angegebenen Variablen
- Vorschau
- ...unset unset (PHP 3, PHP 4, PHP 5) unset -- Löschen einer angegebenen Variablen Beschreibung void unset ( mixed var [, mixed var [, mixed ...]] ) unset() löscht die angegebene Variable. Beachten Sie, dass in PHP 3 unset() immer TRUE gibt (eigentlich den Integer-Wert 1). In PHP 4 ist unset() allerdings keine wirkliche Funktion mehr: Es ist nun ein Sprachkonstrukt. Daher wird kein Wert gegeben, und der Versuch, einen Rückgabewert von unset...
- PHP Manual
- [ unset php.net ]
- PHP Funktion
- isset ( phplist Code 60% Relevanz )
- Rubrik
- Funktionen zur Behandlung von Variablen
- Kurzform
- isset -- Prüft die Existenz einer Variablen
- Vorschau
- ... 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() anschließend ebenfalls FALSE . Zu Beachten ist auch, dass ein NULL -Byte ( "\0" ) nicht der PHP-Konstante NULL entspricht. Warnung: isset() funktioniert nur mit Variablen, da der Aufruf ...
- PHP Manual
- [ isset php.net ]
- PHP Funktion
- session_unset ( phplist Code 56% Relevanz )
- Rubrik
- Session Funktionen
- Kurzform
- session_unset -- Löscht alle Session-Variablen
- Vorschau
- ...session_unset session_unset (PHP 4, PHP 5) session_unset -- Löscht alle Session-Variablen Beschreibung void session_unset ( void ) Die Funktion session_unset() löscht alle Session-Variablen, die gegenwärtig registriert sind. Anmerkung: Benutzen Sie bei Verwendung von $_SESSION (oder $HTTP_SESSION_VARS bei PHP 4.0.6 oder niedriger) unset() um die Registrierung einer Session-...
- PHP Manual
- [ session_unset php.net ]
- PHP Funktion
- unserialize ( phplist Code 50% Relevanz )
- Rubrik
- Funktionen zur Behandlung von Variablen
- Kurzform
- unserialize -- Erzeugt aus einem gespeicherten Datenformat einen Wert in PHP
- Vorschau
- .... $session_data = unserialize ( $tmp [ 0 ]); if (! is_array ( $session_data )) { // etwas ging schief, also wieder ein leeres Array initialisieren $session_data = array(); } } ?> Siehe auch serialize() . strval unset...
- PHP Manual
- [ unserialize php.net ]
- PHP Funktion
- add_index_unset ( phplist Code 50% Relevanz )
- Rubrik
- API Function and Macro reference (work in progress)
- Kurzform
- int add_index_unset ( zval* arg ... key )
...
- Vorschau
- ...add_index_unset add_index_unset add_index_unset -- Add unset value to assoc array using numeric index Beschreibung #include <zend_API.h> int add_index_unset ( zval* arg, ... key ) ... Parameter Liste arg ... key ... Rückgabewerte ... add_index_unicodel add_index_zval...
- PHP Manual
- [ add_index_unset php.net ]
- PHP Funktion
- add_next_index_unset ( phplist Code 40% Relevanz )
- Rubrik
- API Function and Macro reference (work in progress)
- Kurzform
- int add_next_index_unset ( zval* arg )
...
- Vorschau
- ...add_next_index_unset add_next_index_unset add_next_index_unset -- Add unset value to assoc array using next free numeric index Beschreibung #include <zend_API.h> int add_next_index_unset ( zval* arg ) ... Parameter Liste arg ... Rückgabewerte ... add_next_index_unicodel add_next_index_zval...
- PHP Manual
- [ add_next_index_unset php.net ]
- PHP Funktion
- ps_set_info ( phplist Code 38% Relevanz )
- Rubrik
- PostScript document creation
- Kurzform
- ps_set_info -- Sets information fields of document
- Vorschau
- ... also be used for the document information. The BoundingBox is usually set to the value given to the first page. This only works if ps_findfont() has not been called before. In such cases the BoundingBox would be left unset unless you set it explicitly with this function. This function will have no effect anymore when the header of the postscript file has been already written. It must be called before the first page or the first call of ...
- PHP Manual
- [ ps_set_info php.net ]
- PHP Funktion
- SDO Functions ( phplist Code 33% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ...='Advanced Technologies']" ]; $new_hire = $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 ]-&...
- PHP Manual
- [ SDO Functions php.net ]
- PHP Funktion
- XMLReader functions ( phplist Code 25% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ...next() -- Move cursor to next node skipping all subtrees XMLReader->open() -- Set the URI containing the XML to parse XMLReader->read() -- Move to next node in document XMLReader->setParserProperty() -- Set or Unset parser options XMLReader->setRelaxNGSchema() -- Set the filename or URI for a RelaxNG Schema XMLReader->setRelaxNGSchemaSource() -- Set the data containing a RelaxNG Schema XMLReader->XML() -- Set the data ...
- PHP Manual
- [ XMLReader functions php.net ]
- PHP Funktion
- exec ( phplist Code 22% Relevanz )
- Rubrik
- Funktionen zur Programmausführung
- Kurzform
- exec -- Führt ein externes Programm aus
- Vorschau
- ... dieses mit jeder Zeile des Befehlsausgabe gefüllt. Beachten Sie, dass wenn das Array schon Elemente enthält, die Funktion exec() die Ausgabe an das Array anhängt. Wenn Sie dieses nicht wünschen, rufen Sie die Funktion unset () für das Array auf, bevor Sie es als Parameter der Funktion exec() übergeben. Ist der Parameter return_var angegeben, so wird der Rückgabestatus des ausgeführten Befehls in diese Variable geschrieben. Beachten Sie, ...
- PHP Manual
- [ exec php.net ]
- PHP Funktion
- declare ( phplist Code 17% Relevanz )
- Rubrik
- Kontroll-Strukturen
- Kurzform
- -----
- Vorschau
- ... PHP Code <?php // Funktion, die bei Aufruf die Zeit aufzeichnet function profile ( $dump = FALSE ) { static $profile ; // Rückgabe der gespeicherten Zeit aus profile, danach löschen if ( $dump ) { $temp = $profile ; unset ( $profile ); return ( $temp ); } $profile [] = microtime (); } // Einen tick handler bestimmen register_tick_function ( "profile" ); // Funktion vor dem declare-Block initialisieren profile (); // Ausführen eines Code-...
- PHP Manual
- [ declare php.net ]
- PHP Funktion
- Creating Variables ( phplist Code 17% Relevanz )
- Rubrik
- Zend API: Hacking the Core of PHP
- Kurzform
- -----
- Vorschau
- ...functions return FAILURE on failure and SUCCESS on success. Tabelle 46-8. Zend's API for Associative Arrays Function Description add_assoc_long(zval *array, char *key, long n);() Adds an element of type long . add_assoc_unset(zval *array, char *key);() Adds an unset element. add_assoc_bool(zval *array, char *key, int b);() Adds a Boolean element. add_assoc_resource(zval *array, char *key, int r);() Adds a resource to the array. ...
- PHP Manual
- [ Creating Variables php.net ]
- PHP Funktion
- SDO Relational Data Access Service Functions ( phplist Code 16% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... NULL type. It is not legal to assign PHP NULL to a data object property and the Relational DAS will not write that back as a NULL to the database. If nulls are found in the database on a query, the property will remain unset. Only two types of SDO relationship. The metadata described below allows the Relational DAS to model just two types of SDO relationship: multi-valued containment relationships and single-valued non-containment references...
- PHP Manual
- [ SDO Relational Data Access Service Functions php.net ]
- PHP Funktion
- var_dump ( phplist Code 15% Relevanz )
- Rubrik
- Funktionen zur Behandlung von Variablen
- Kurzform
- var_dump -- Gibt alle Informationen zu einer Variablen aus
- Vorschau
- ...1]=> string(1) "b" [2]=> string(1) "c" }} <?php $b = 3.1 ; $c = true ; var_dump ( $b , $c ); ?> Das oben gezeigte Beispiel erzeugt folgendeAusgabe: float(3.1)bool(true) Siehe auch var_export() print_r() unset var_export...
- PHP Manual
- [ var_dump php.net ]
- PHP Funktion
- XMLReader->setParserProperty() ( phplist Code 15% Relevanz )
- Rubrik
- XMLReader functions
- Kurzform
- XMLReader->setParserProperty() -- Set or Unset parser options
- Vorschau
- ....xmlreader-read.html"> setRelaxNGSchema()"HREF="function.xmlreader-setrelaxngschema.html"> XMLReader->setParserProperty() (no version information, might be only in CVS) XMLReader->setParserProperty() -- Set or Unset parser options Beschreibung class XMLReader { bool setParserProperty ( int property, bool value ) } Set or Unset parser option for the parser. The options must be set after xmlreader-open() or xmlreader-xml() are called ...
- PHP Manual
- [ XMLReader->setParserProperty() php.net ]
- PHP Funktion
- Funktionen zur Behandlung von Variablen ( phplist Code 14% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... Repräsentation eines Wertes settype -- Legt den Typ einer Variablen fest strval -- Ermittelt die String-Repräsentation einer Variable unserialize -- Erzeugt aus einem gespeicherten Datenformat einen Wert in PHP unset -- Löschen einer angegebenen Variablen var_dump -- Gibt alle Informationen zu einer Variablen aus var_export -- Outputs or returns a parsable string representation of a variable urlencode debug_zval_dump...
- PHP Manual
- [ Funktionen zur Behandlung von Variablen php.net ]
- PHP Funktion
- imagesavealpha ( phplist Code 11% Relevanz )
- Rubrik
- Grafik-Funktionen
- Kurzform
- imagesavealpha -- Set the flag to save full alpha channel information (as opposed to single-color transparency) when saving PNG images
- Vorschau
- ... bool imagesavealpha ( resource image, bool saveflag ) imagesavealpha() sets the flag to attempt to save full alpha channel information (as opposed to single-color transparency) when saving PNG images. You have to unset alphablending ( imagealphablending($im, FALSE ) ), to use it. Alpha channel is not supported by all browsers, if you have problem with your browser, try to load your script with an alpha channel compliant browser, e.g. ...
- PHP Manual
- [ imagesavealpha php.net ]
- PHP Funktion
- Pattern Syntax ( phplist Code 11% Relevanz )
- Rubrik
- Reguläre Ausdrücke Funktionen (Perl-kompatibel)
- Kurzform
- -----
- Vorschau
- ... with the settings of captured strings when part of a pattern is repeated. For example, matching "aba" against the pattern /^(a(b)?)+$/ sets $2 to the value "b", but matching "aabbaa" against /^(aa(bb)?)+$/ leaves $2 unset. However, if the pattern is changed to /^(aa(b(b))?)+$/ then $2 (and $3) get set. In Perl 5.004 $2 is set in both cases, and that is also TRUE of PCRE. If in the future Perl changes to a consistent state that is different...
- PHP Manual
- [ Pattern Syntax php.net ]
- PHP Funktion
- API Function and Macro reference (work in progress) ( phplist Code 11% Relevanz )
- Rubrik
- Zend API: Hacking the Core of PHP
- Kurzform
- -----
- Vorschau
- ... array with binary safe key add_assoc_unicodel_ex -- Add a binary safe unicode_string value to an assoc array with binary safe key add_assoc_unicodel -- Add a binary safe unicode_string value to an assoc array add_assoc_unset -- ... add_assoc_zval_ex -- Add a zval value to an assoc array with binary safe key add_assoc_zval -- Add a zval value to an assoc array add_get_assoc_string_ex -- ... add_get_assoc_string -- ... add_get_assoc_stringl_ex...
- PHP Manual
- [ API Function and Macro reference (work in progress) php.net ]
- PHP Funktion
- Referenzen aufheben ( phplist Code 8% Relevanz )
- Rubrik
- Referenzen in PHP
- Kurzform
- -----
- Vorschau
- ... Referenz aufgehoben, so wird nur die Bindung zwischen einem Variablennamen und dem Variableninhalt entfernt. Der Inhalt der Variablen wird hierbei nicht gelöscht. Betrachten wir folgendes Beispiel: $a = 1; $b =& $a; unset ($a); Die Variable $b wird nicht gelöscht, sondern es wird nur die Bindung des Variablennamen $a an den Variableninhalt aufgehoben. Dieser Variableninhalt ist immer noch über $b verfügbar. Wiederum sieht man die Analogie...
- PHP Manual
- [ Referenzen aufheben php.net ]