array PHP Funktionen : PHP Übersicht : PHP Manual

array

PHP Function array / PHP Funktion array

phplist » Webkatalog Script - Link Script » PHP Function Coder » array
PHP Funktion
array ( phplist Code 100% Relevanz )
Rubrik
Array Funktionen
Kurzform
array -- Erstellt ein Array
Vorschau
...array array (PHP 3, PHP 4, PHP 5) array -- Erstellt ein Array Beschreibung array array ( [mixed ...] ) Gibt ein den Parametern entsprechendes Array . Mit dem => Operator können die Parameter indiziert werden. e Informationen zu Arrays finden Sie im Abschnitt array type . Anmerkung: array() ist keine richtige Funktion sondern ein Sprachkonstrukt, das zur ...
PHP Manual
[ array php.net ]

PHP Funktion
Arrays ( phplist Code 91% Relevanz )
Rubrik
Typen
Kurzform
-----
Vorschau
...Arrays PHP Handbuch Kapitel 11. Typen Arrays Ein Array in PHP ist eigentlich eine geordnete Abbildung. Eine Abbildung ist ein Typ der Werte auf Schlüssel abbildet. Dieser Typ ist auf mehrere Arten optimiert, so dass Sie ihn auf verschiedene Weise benutzen können: als reales ...
PHP Manual
[ Arrays php.net ]

PHP Funktion
in_array ( phplist Code 77% Relevanz )
Rubrik
Array Funktionen
Kurzform
in_array -- Prüft ob ein Wert in einem Array existiert
Vorschau
...in_array in_array (PHP 4, PHP 5) in_array -- Prüft, ob ein Wert in einem Array existiert Beschreibung bool in_array ( mixed needle, array haystack [, bool strict] ) Diese Funktion sucht in haystack nach needle und gibt bei Erfolg TRUE , andernfalls FALSE . Ist der dritte Parameter strict auf TRUE gesetzt, prüft in_array() auch die Typen von needle in ...
PHP Manual
[ in_array php.net ]

PHP Funktion
is_array ( phplist Code 77% Relevanz )
Rubrik
Funktionen zur Behandlung von Variablen
Kurzform
is_array -- Prüft ob die Variable ein Array ist
Vorschau
...is_array is_array (PHP 3, PHP 4, PHP 5) is_array -- Prüft, ob die Variable ein Array ist Beschreibung bool is_array ( mixed var ) Ermittelt, ob die gegebene Variable ein Array ist. Parameter Liste var Die zu untersuchende Variable. Rückgabewerte Gibt TRUE , wenn var vom Typ array ist, andernfalls FALSE . Beispiele Beispiel 1. Überprüfen, ob die Variable ein Array ist <?php $yes = array...
PHP Manual
[ is_array php.net ]

PHP Funktion
array_map ( phplist Code 71% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_map -- Wendet eine Callback-Funktion auf die Elemente von Arrays an
Vorschau
...array_map array_map (PHP 4 >= 4.0.6, PHP 5) array_map -- Wendet eine Callback-Funktion auf die Elemente von Arrays an Beschreibung array array_map ( callback callback, array arr1 [, array ...] ) array_map() gibt ein Array mit allen Elementen von arr1 , nachdem die Callback-Funktion callback auf jedes einzelne Element angewandt wurde. Die Anzahl Parameter, welche die Callback-Funktion callback akzeptiert, sollte der Anzahl der an array_map...
PHP Manual
[ array_map php.net ]

PHP Funktion
array_pad ( phplist Code 71% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_pad -- Vergrößert ein Array auf die spezifizierte Länge mit einem Wert
Vorschau
...array_pad array_pad (PHP 4, PHP 5) array_pad -- Vergrößert ein Array auf die spezifizierte Länge mit einem Wert Beschreibung array array_pad ( array input, int pad_size, mixed pad_value ) array_pad() liefert eine Kopie von input , welche auf die von pad_size spezifizierte Größe mit dem Wert pad_value ert wurde. Ist der Parameter pad_size positiv, wird das Array rechts ert, ist er negativ, dann erfolgt die Erung ...
PHP Manual
[ array_pad php.net ]

PHP Funktion
array_pop ( phplist Code 71% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_pop -- Liefert das letzte Element eines Arrays
Vorschau
...array_pop array_pop (PHP 4, PHP 5) array_pop -- Liefert das letzte Element eines Arrays Beschreibung mixed array_pop ( array &array ) array_pop() liefert den letzten Wert von array , und verkürzt array um ein Element. Ist array leer (oder kein Array), wird NULL gegeben. Anmerkung: Diese Funktion setzt( reset() ) nach Verwendung den array -Zeiger. Beispiel 1. array_pop() <?php $stack = array( "Orange" , "Banane" , "...
PHP Manual
[ array_pop php.net ]

PHP Funktion
array_sum ( phplist Code 71% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_sum -- Liefert die Summe der Werte in einem Array
Vorschau
...array_sum array_sum (PHP 4 >= 4.0.4, PHP 5) array_sum -- Liefert die Summe der Werte in einem Array Beschreibung number array_sum ( array array ) array_sum() liefert die Summe der Werte eines Arrays als Integer oder Float. Beispiel 1. array_sum() <?php $a = array( 2 , 4 , 6 , 8 ); echo "sum(a) = " . array_sum ( $a ) . "\n" ; $b = array( "a" => 1.2 , "b" => 2.3 , "c" => 3.4 ); echo "sum(b) = " . ...
PHP Manual
[ array_sum php.net ]

PHP Funktion
array_diff ( phplist Code 67% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_diff -- Ermittelt die Unterschiede von Arrays
Vorschau
...array_diff array_diff (PHP 4 >= 4.0.1, PHP 5) array_diff -- Ermittelt die Unterschiede von Arrays Beschreibung array array_diff ( array array1, array array2 [, array ...] ) array_diff() gibt ein Array mit allen Werten von array1 , welche in keinem der anderen Argumente enthalten sind, . Beachten Sie, dass Schlüssel erhalten bleiben. Beispiel 1. array_diff() <?php $array1 = array( "a" => "grün" , "rot" , "blau...
PHP Manual
[ array_diff php.net ]

PHP Funktion
array_fill ( phplist Code 67% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_fill -- Füllt ein Array mit Werten
Vorschau
...array_fill array_fill (PHP 4 >= 4.2.0, PHP 5) array_fill -- Füllt ein Array mit Werten Beschreibung array array_fill ( int start_index, int num, mixed value ) array_fill() füllt ein Array mit num Einträgen des Wertes des value Parameters. Die Indizes des Arrays beginnen mit dem start_index Parameter. Beachten Sie, dass num eine Zahl größer als Null sein muss, ansonsten gibt PHP eine Warnung aus. Beispiel ...
PHP Manual
[ array_fill php.net ]

PHP Funktion
array_flip ( phplist Code 67% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_flip -- Vertauscht Werte und Schlüssel in einem Array
Vorschau
...array_flip array_flip (PHP 4, PHP 5) array_flip -- Vertauscht Werte und Schlüssel in einem Array Beschreibung array array_flip ( array trans ) array_flip() gibt ein Array in umgekehrter Reihenfolge , d.h. Schlüssel von trans werden Werte, und die Werte von trans werden zu Schlüsseln. Beachten Sie, dass die Werte von trans gültige Schlüssel sein müssen, z.B. haben sie entweder integer oder...
PHP Manual
[ array_flip php.net ]

PHP Funktion
array_keys ( phplist Code 67% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_keys -- Liefert alle Schlüssel eines Arrays
Vorschau
...array_keys array_keys (PHP 4, PHP 5) array_keys -- Liefert alle Schlüssel eines Arrays Beschreibung array array_keys ( array input [, mixed search_value [, bool strict]] ) array_keys() gibt die Schlüssel (numerisch und String) des Arrays input . Ist der optionale Parameter search_value angegeben, werden nur die Schlüssel für diesen Wert gegeben. Andernfalls werden all Schlüssel von input gegeben...
PHP Manual
[ array_keys php.net ]

PHP Funktion
array_push ( phplist Code 67% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_push -- Fügt ein oder mehr Elemente an das Ende eines Arrays
Vorschau
...array_push array_push (PHP 4, PHP 5) array_push -- Fügt ein oder mehr Elemente an das Ende eines Arrays Beschreibung int array_push ( array &array, mixed var [, mixed ...] ) array_push() behandelt array als Stapel (Stack), und fügt die übergebenen Variablen an das Ende von array . Die Länge von array wird dabei um die Anzahl der angefügten Variablen erhöht. Dies hat den selben Effekt wie: <?php $array [] = $var ; ?>...
PHP Manual
[ array_push php.net ]

PHP Funktion
array_rand ( phplist Code 67% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_rand -- Liefert einen oder mehrere zufällige Einträge eines Arrays
Vorschau
...array_rand array_rand (PHP 4, PHP 5) array_rand -- Liefert einen oder mehrere zufällige Einträge eines Arrays Beschreibung mixed array_rand ( array input [, int num_req] ) array_rand() ist ziemlich nützlich, wenn Sie einen oder mehrere zufällige Einträge eines Arrays auswählen möchten. Die Funktion übernimmt das Array input , und ein optionales Argument num_req , welches die gewünschte Anzahl ...
PHP Manual
[ array_rand php.net ]

PHP Funktion
array_walk ( phplist Code 67% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_walk -- Wendet eine Benutzerfunktion an jedem Element eines Arrays an
Vorschau
...array_walk array_walk (PHP 3 >= 3.0.3, PHP 4, PHP 5) array_walk -- Wendet eine Benutzerfunktion an jedem Element eines Arrays an Beschreibung bool array_walk ( array &array, callback funcname [, mixed userdata] ) Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Wendet die mittels funcname angegebene Benutzerfunktion für jedes Element von array an. funcname benötigt zwei Parameter. Der Wert von...
PHP Manual
[ array_walk php.net ]

PHP Funktion
array_chunk ( phplist Code 63% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_chunk -- Splittet ein Array in Teile auf
Vorschau
...array_chunk array_chunk (PHP 4 >= 4.2.0, PHP 5) array_chunk -- Splittet ein Array in Teile auf Beschreibung array array_chunk ( array input, int size [, bool preserve_keys] ) array_chunk() teilt das Array in verschiedene Arrays mit size Werten auf. Am Ende kann auch ein Array mit weniger Werten erzeugt werden. Die Arrays werden als Teile eines mehrdimensionalen Arrays erzeugt, welches bei Null und beginnend numerisch ...
PHP Manual
[ array_chunk php.net ]

PHP Funktion
array_merge ( phplist Code 63% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_merge -- Führt ein oder mehrere Arrays zusammen
Vorschau
...array_merge array_merge (PHP 4, PHP 5) array_merge -- Führt ein oder mehrere Arrays zusammen Beschreibung array array_merge ( array array1 [, array array2 [, array ...]] ) array_merge() fügt die Elemente von einem oder mehreren Arrays zusammen, indem die Werte des einen an das Ende des anderen angehängt werden. Das daraus resultierende Array wird gegeben. Haben die angegebenen Arrays die selben ...
PHP Manual
[ array_merge php.net ]

PHP Funktion
array_shift ( phplist Code 63% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_shift -- Liefert ein Element vom Beginn eines Arrays
Vorschau
...array_shift array_shift (PHP 4, PHP 5) array_shift -- Liefert ein Element vom Beginn eines Arrays Beschreibung mixed array_shift ( array &array ) array_shift() liefert den ersten Wert von array , verschiebt die anderen Werte hinunter, und verkürzt array um ein Element. Alle numerischen Schlüssel werden so modifiziert, dass bei null zu zählen begonnen wird. Strings als Schlüssel bleiben unverändert. Ist array ...
PHP Manual
[ array_shift php.net ]

PHP Funktion
array_slice ( phplist Code 63% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_slice -- Extrahiert einen Ausschnitt eines Arrays
Vorschau
...array_slice array_slice (PHP 4, PHP 5) array_slice -- Extrahiert einen Ausschnitt eines Arrays Beschreibung array array_slice ( array array, int offset [, int length [, bool preserve_keys]] ) array_slice() liefert die mittels offset und length spezifizierte Sequenz von Elementen des Arrays array Ist offset nicht negativ, beginnt die Sequenz bei diesem Offset in dem array . Ist offset negativ, beginnt die Sequenz ...
PHP Manual
[ array_slice php.net ]

PHP Funktion
array_udiff ( phplist Code 63% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_udiff -- Ermittelt den Unterschied zwischen Arrays mittels einer Callbackfunktion für den Datenvergleich
Vorschau
...array_udiff array_udiff (PHP 5) array_udiff -- Ermittelt den Unterschied zwischen Arrays mittels einer Callbackfunktion für den Datenvergleich Beschreibung array array_udiff ( array array1, array array2 [, array ..., callback data_compare_func] ) array_udiff() gibt ein Array mit allen Werten von array1 , welche in keinem der anderen Argumente enthalten sind, . Beachten Sie, dass Schlüssel erhalten bleiben. Für den Vergleich der ...
PHP Manual
[ array_udiff php.net ]

PHP Funktion
array_filter ( phplist Code 59% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_filter -- Filtert Elemente eines Arrays mittels einer Callback-Funktion
Vorschau
...array_filter array_filter (PHP 4 >= 4.0.6, PHP 5) array_filter -- Filtert Elemente eines Arrays mittels einer Callback-Funktion Beschreibung array array_filter ( array input [, callback callback] ) array_filter() übergibt nacheinander alle Werte in dem Array input and die callback Funktion. Gibt die callback Funktion true , wird der aktuelle Wert von input in das Ergebnis-Array geschrieben. Die Schlüssel des Arrays ...
PHP Manual
[ array_filter php.net ]

PHP Funktion
array_reduce ( phplist Code 59% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_reduce -- Iterative Reduktion eines Arrays zu einem Wert mittels einer Callback Funktion
Vorschau
...array_reduce array_reduce (PHP 4 >= 4.0.5, PHP 5) array_reduce -- Iterative Reduktion eines Arrays zu einem Wert mittels einer Callback Funktion Beschreibung mixed array_reduce ( array input, callback function [, int initial] ) array_reduce() wendet die Funktion function iterativ bei den Elementen des Arrays input so an, dass das Array auf einen einzigen Wert reduziert wird. Ist der optionale Parameter...
PHP Manual
[ array_reduce php.net ]

PHP Funktion
array_search ( phplist Code 59% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_search -- Durchsucht ein Array nach einem Wert liefert bei Erfolg den Schlüssel
Vorschau
...array_search array_search (PHP 4 >= 4.0.5, PHP 5) array_search -- Durchsucht ein Array nach einem Wert liefert bei Erfolg den Schlüssel Beschreibung mixed array_search ( mixed needle, array haystack [, bool strict] ) Diese Funktion durchsucht haystack nach needle und gibt bei Erfolg den Schlüssel , andernfalls FALSE . Anmerkung: Falls needle ein String ist, wird der Vergleich unter Beachtung der Groß-/...
PHP Manual
[ array_search php.net ]

PHP Funktion
array_splice ( phplist Code 59% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_splice -- Entfernt einen Teil eines Arrays und ersetzt ihn durch etwas anderes
Vorschau
...array_splice array_splice (PHP 4, PHP 5) array_splice -- Entfernt einen Teil eines Arrays und ersetzt ihn durch etwas anderes Beschreibung array array_splice ( array &input, int offset [, int length [, array replacement]] ) array_splice() entfernt die durch offset und length angegebenen Elemente des Arrays input , und ersetzt diese durch die Elemente des Arrays replacement , wenn angegeben und gibt ein Array mit den ...
PHP Manual
[ array_splice php.net ]

PHP Funktion
array_unique ( phplist Code 59% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_unique -- Entfernt doppelte Werte aus einem Array
Vorschau
...array_unique array_unique (PHP 4 >= 4.0.1, PHP 5) array_unique -- Entfernt doppelte Werte aus einem Array Beschreibung array array_unique ( array array ) array_unique() nimmt array und gibt ein neues Array , aus dem alle doppelten Einträge entfernt wurden. Beachten Sie, dass Schlüssel bewahrt bleiben. Erst behandelt array_unique() die Werte als Strings und sortiert sie, danach wird der erste gefundene Schlüssel behalten, ...
PHP Manual
[ array_unique php.net ]

PHP Funktion
array_values ( phplist Code 59% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_values -- Liefert alle Werte eines Arrays
Vorschau
...array_values array_values (PHP 4, PHP 5) array_values -- Liefert alle Werte eines Arrays Beschreibung array array_values ( array input ) array_values() liefert alle Werte des Arrays input mit einem numerischen Index. Beispiel 1. array_values() <?php $array = array( "größe" => "XL" , "farbe" => "gold" ); print_r ( array_values ( $array )); ?> Das oben gezeigte Beispiel erzeugt ...
PHP Manual
[ array_values php.net ]

PHP Funktion
array_combine ( phplist Code 56% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_combine -- Erzeugt ein Array indem es ein Array für die Schlüsel und ein anderes für die Werte verwendet
Vorschau
...array_combine array_combine (PHP 5) array_combine -- Erzeugt ein Array, indem es ein Array für die Schlüsel und ein anderes für die Werte verwendet Beschreibung array array_combine ( array keys, array values ) Gibt ein array , in dem die Werte des keys Array als Schlüssel und die Werte aus dem values Array als die zugehörigen Werte verwendet werden. Gibt FALSE , wenn die Anzahl von Elementen nicht in beiden Arrays identisch ist oder die ...
PHP Manual
[ array_combine php.net ]

PHP Funktion
array_product ( phplist Code 56% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_product -- Ermittelt das Produkt von Werten in einem Array
Vorschau
...array_product array_product (PHP 5 >= 5.1.0RC1) array_product -- Ermittelt das Produkt von Werten in einem Array Beschreibung number array_product ( array array ) array_product() gibt das Produkt von Werten in einem Array als Integer oder Float . Beispiel 1. array_product() Beispiel <?php $a = array( 2 , 4 , 6 , 8 ); echo "Produkt(a) = " . array_product ( $a ) . "\n" ; ?> Das oben gezeigte Beispiel erzeugt folgendeAusgabe: Produkt(a...
PHP Manual
[ array_product php.net ]

PHP Funktion
array_reverse ( phplist Code 56% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_reverse -- Liefert ein Array mit umgekehrter Reihenfolge der Elemente
Vorschau
...array_reverse array_reverse (PHP 4, PHP 5) array_reverse -- Liefert ein Array mit umgekehrter Reihenfolge der Elemente Beschreibung array array_reverse ( array array [, bool preserve_keys] ) array_reverse() liefert ein Array mit der umgekehrten Reihenfolge der Elemente von array . Ist der optionale Parameter preserve_keys TRUE , bleibt die Reihenfolge der Schlüssel aufrecht. Beispiel 1. array_reverse() <?php $input = array( "php" , 4.0 , ...
PHP Manual
[ array_reverse php.net ]

PHP Funktion
array_unshift ( phplist Code 56% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_unshift -- Fügt ein oder mehr Elemente am Anfang eines Arrays ein
Vorschau
...array_unshift array_unshift (PHP 4, PHP 5) array_unshift -- Fügt ein oder mehr Elemente am Anfang eines Arrays ein Beschreibung int array_unshift ( array &array, mixed var [, mixed ...] ) array_unshift() fügt die übergebenen Elemente am Anfang von array ein. Beachten Sie, dass die Liste von Elementen als Ganzes eingefügt wird, sodass die eingefügten Elemente die selbe Reihenfolge haben. Die numerischen Schlüssel...
PHP Manual
[ array_unshift php.net ]

PHP Funktion
arsort ( phplist Code 55% Relevanz )
Rubrik
Array Funktionen
Kurzform
arsort -- Sortiert ein Array in umgekehrter Reihenfolge und behält die Verbindung zum Index
Vorschau
...arsort arsort (PHP 3, PHP 4, PHP 5) arsort -- Sortiert ein Array in umgekehrter Reihenfolge und behält die Verbindung zum Index Beschreibung bool arsort ( array &array [, int sort_flags] ) Diese Funktion sortiert ein Array so, dass der Zusammenhang zwischen den Indizes und den entsprechenden Arrayelementen erhalten bleibt. Dies wird hauptsächlich bei assoziativen Arrays verwendet, bei ...
PHP Manual
[ arsort php.net ]

PHP Funktion
array_diff_key ( phplist Code 53% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_diff_key -- Berechnet den Unterschied zwischen Arrays indem es die Schlüssel vergleicht
Vorschau
...array_diff_key array_diff_key (PHP 5 >= 5.1.0RC1) array_diff_key -- Berechnet den Unterschied zwischen Arrays indem es die Schlüssel vergleicht Beschreibung array array_diff_key ( array array1, array array2 [, array ...] ) array_diff_key() gibt ein Array , welches alle Werte aus array1 enthält, die Schlüssel besitzen die in keinem der anderen Argumente enthalten sind. Beachten Sie, dass die Assoziativität erhalten bleibt. Diese ...
PHP Manual
[ array_diff_key php.net ]

PHP Funktion
pg_fetch_array ( phplist Code 53% Relevanz )
Rubrik
PostgreSQL Funktionen
Kurzform
pg_fetch_array -- Holt eine Zeile als Array
Vorschau
...pg_fetch_array pg_fetch_array (PHP 3 >= 3.0.1, PHP 4, PHP 5) pg_fetch_array -- Holt eine Zeile als Array Beschreibung array pg_fetch_array ( resource result [, int row [, int result_type]] ) pg_fetch_array() gibt ein Array , das die gelesene Zeile (Tupel, Datensatz) enthält. pg_fetch_array() ist eine erte Version von pg_fetch_row() . Zusätzlich zur Speicherung der Daten in einem numerischen Array (mit den Feldindizes) ...
PHP Manual
[ pg_fetch_array php.net ]

PHP Funktion
array_diff_ukey ( phplist Code 50% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_diff_ukey -- Berechnet den Unterschied von Arrays mittels einer Callbackfunktion für den Vergleich der Schlüssel
Vorschau
...array_diff_ukey array_diff_ukey (PHP 5 >= 5.1.0RC1) array_diff_ukey -- Berechnet den Unterschied von Arrays mittels einer Callbackfunktion für den Vergleich der Schlüssel Beschreibung array array_diff_ukey ( array array1, array array2 [, array ..., callback key_compare_func] ) array_diff_ukey() gibt ein Array , welches alle Werte von array1 enthält, deren Schlüssel in keinem der anderen Argumente vorkommen. Beachten Sie, dass die ...
PHP Manual
[ array_diff_ukey php.net ]

PHP Funktion
array_fill_keys ( phplist Code 50% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_fill_keys -- Fill an array with values specifying keys
Vorschau
...array_fill_keys array_fill_keys (no version information, might be only in CVS) array_fill_keys -- Fill an array with values, specifying keys Description array array_fill_keys ( array keys, mixed value ) array_fill_keys() fills an array with the value of the value parameter, using the values of the keys array as keys. Beispiel 1. array_fill_keys() example <?php $keys = array( 'foo' , 5 , 10 , 'bar' ); $a = array_fill_keys...
PHP Manual
[ array_fill_keys php.net ]

PHP Funktion
array_intersect ( phplist Code 50% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_intersect -- Ermittelt die Schnittmenge von Arrays
Vorschau
...array_intersect array_intersect (PHP 4 >= 4.0.1, PHP 5) array_intersect -- Ermittelt die Schnittmenge von Arrays Beschreibung array array_intersect ( array array1, array array2 [, array ...] ) array_intersect() gibt ein Array mit allen Werten von array1 , die auch in allen anderen Argumenten enthalten sind, . Beachten Sie, dass die Schlüssel erhalten bleiben. Beispiel 1. array_intersect() Beispiel <?php $array1...
PHP Manual
[ array_intersect php.net ]

PHP Funktion
array_multisort ( phplist Code 50% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_multisort -- Sortiert mehrere oder multidimensionale Arrays
Vorschau
...array_multisort array_multisort (PHP 4, PHP 5) array_multisort -- Sortiert mehrere oder multidimensionale Arrays Beschreibung bool array_multisort ( array ar1 [, mixed arg [, mixed ... [, array ...]]] ) Gibt bei Erfolg TRUE , im Fehlerfall FALSE . array_multisort() wird zum Sortieren von entweder mehreren Arrays auf einmal, oder eines multidimensionalen Arrays nach einer oder mehreren Dimensionen benutzt. Bei ...
PHP Manual
[ array_multisort php.net ]

PHP Funktion
db2_fetch_array ( phplist Code 50% Relevanz )
Rubrik
IBM DB2 Cloudscape and Apache Derby Functions
Kurzform
db2_fetch_array -- Returns an array indexed by column position representing a row in a result set
Vorschau
...db2_fetch_array db2_fetch_array (PECL) db2_fetch_array -- Returns an array, indexed by column position, representing a row in a result set Beschreibung array db2_fetch_array ( resource stmt [, int row_number] ) Returns an array, indexed by column position, representing a row in a result set. The columns are 0-indexed. Parameter Liste stmt A valid stmt resource containing a result set. ...
PHP Manual
[ db2_fetch_array php.net ]

PHP Funktion
hw_Array2Objrec ( phplist Code 50% Relevanz )
Rubrik
Hyperwave Functions
Kurzform
hw_Array2Objrec -- Convert attributes from object array to object record
Vorschau
...hw_Array2Objrec hw_Array2Objrec (PHP 3 >= 3.0.4, PHP 4, PECL) hw_Array2Objrec -- Convert attributes from object array to object record Description string hw_array2objrec ( array object_array ) Converts an object_array into an object record. Multiple attributes like 'Title' in different languages are treated properly. See also hw_objrec2array() . Hyperwave Functions hw_changeobject...
PHP Manual
[ hw_Array2Objrec php.net ]

PHP Funktion
hw_objrec2array ( phplist Code 50% Relevanz )
Rubrik
Hyperwave Functions
Kurzform
hw_objrec2array -- Convert attributes from object record to object array
Vorschau
...hw_objrec2array hw_objrec2array (PHP 3 >= 3.0.3, PHP 4, PECL) hw_objrec2array -- Convert attributes from object record to object array Description array hw_objrec2array ( string object_record [, array format] ) Converts an object_record into an object array. The keys of the resulting array are the attributes names. Multi-value attributes like 'Title' in different languages form its own array. The keys of this array ...
PHP Manual
[ hw_objrec2array php.net ]

PHP Funktion
oci_fetch_array ( phplist Code 50% Relevanz )
Rubrik
Oracle 8 Funktionen
Kurzform
oci_fetch_array -- Returns the next row from the result data as an associative or numeric array or both
Vorschau
...oci_fetch_array oci_fetch_array (PHP 5) oci_fetch_array -- Returns the next row from the result data as an associative or numeric array, or both Description array oci_fetch_array ( resource statement [, int mode] ) Returns an array, which corresponds to the next result row or FALSE in case of error or there are no more rows in the result. oci_fetch_array() returns an array with both associative ...
PHP Manual
[ oci_fetch_array php.net ]

PHP Funktion
array_diff_assoc ( phplist Code 48% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_diff_assoc -- Berechnet den Unterschied zwischen Arrays mit zusätzlicher Indexprüfung
Vorschau
...array_diff_assoc array_diff_assoc (PHP 4 >= 4.3.0, PHP 5) array_diff_assoc -- Berechnet den Unterschied zwischen Arrays mit zusätzlicher Indexprüfung Beschreibung array array_diff_assoc ( array array1, array array2 [, array ...] ) array_diff_assoc() gibt ein array , das alle Werte aus array1 enthält, die in einem der anderen Argumente vorhanden ist. Beachten Sie, dass die Schlüssel anders als von array_diff() in den Vergleich ...
PHP Manual
[ array_diff_assoc php.net ]

PHP Funktion
array_key_exists ( phplist Code 48% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_key_exists -- Prüft ob ein Schlüssel in einem Array existiert
Vorschau
...array_key_exists array_key_exists (PHP 4 >= 4.1.0, PHP 5) array_key_exists -- Prüft, ob ein Schlüssel in einem Array existiert Beschreibung bool array_key_exists ( mixed key, array search ) array_key_exists() gibt TRUE , wenn key in dem Array vorhanden ist. key kann jeder für einen Array-Index mögliche Wert sein. array_key_exists() arbeitet ebenfalls mit Objekten. Beispiel 1. array_key_exists() <?php $...
PHP Manual
[ array_key_exists php.net ]

PHP Funktion
array_uintersect ( phplist Code 48% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_uintersect -- Ermittelt die Schnittmenge von Arrays vergleicht Daten mittels einer Callbackfunktion
Vorschau
...array_uintersect array_uintersect (PHP 5) array_uintersect -- Ermittelt die Schnittmenge von Arrays, vergleicht Daten mittels einer Callbackfunktion Beschreibung array array_uintersect ( array array1, array array2 [, array ..., callback data_compare_func] ) array_uintersect() gibt ein Array mit allen Werten aus array1 , die ebenfalls in allen anderen Argumenten enthalten sind. Die Daten werden durch eine Callbackfunktion verglichen. ...
PHP Manual
[ array_uintersect php.net ]

PHP Funktion
filter_var_array ( phplist Code 48% Relevanz )
Rubrik
Filter Functions
Kurzform
filter_var_array -- Gets multiple variables and optionally filters them
Vorschau
...filter_var_array filter_var_array (no version information, might be only in CVS) filter_var_array -- Gets multiple variables and optionally filters them Beschreibung mixed filter_var_array ( array data [, mixed definition] ) This function is useful for retrieving many values without repetitively calling filter_var() . Parameter Liste data An array with string keys containing the data to filter. definition An ...
PHP Manual
[ filter_var_array php.net ]

PHP Funktion
msql_fetch_array ( phplist Code 48% Relevanz )
Rubrik
mSQL Funktionen
Kurzform
msql_fetch_array -- Holt eine Zeile als Array
Vorschau
...msql_fetch_array msql_fetch_array (PHP 3, PHP 4, PHP 5) msql_fetch_array -- Holt eine Zeile als Array Beschreibung array msql_fetch_array ( resource result [, int result_type] ) msql_fetch_array() ist eine erte Version von msql_fetch_row() . Zusätzlich zur Speicherung der Daten in einem numerischen Array speichert diese Funktion den Datensatz auch mit assoziativen Indizes, indem sie die Feldnamen als Schlüssel ...
PHP Manual
[ msql_fetch_array php.net ]

PHP Funktion
odbc_fetch_array ( phplist Code 48% Relevanz )
Rubrik
ODBC Funktionen
Kurzform
odbc_fetch_array -- Fetch a result row as an associative array
Vorschau
...odbc_fetch_array odbc_fetch_array (PHP 4 >= 4.0.2, PHP 5) odbc_fetch_array -- Fetch a result row as an associative array Beschreibung array odbc_fetch_array ( resource result [, int rownumber] ) Fetch an associative array from an ODBC query. See the changelog below for when this function is available. Parameter Liste result The result resource from odbc_exec() . rownumber Optionally choose which row number to retrieve. Rückgabewerte ...
PHP Manual
[ odbc_fetch_array php.net ]

PHP Funktion
Array-Operatoren ( phplist Code 48% Relevanz )
Rubrik
Operatoren
Kurzform
-----
Vorschau
...Array-Operatoren PHP Handbuch Kapitel 15. Operatoren Array-Operatoren Tabelle 15-7. Array-Operatoren Beispiel Name Ergebnis $a + $b Vereinigung Verinigung von $a und $b. $a == $b Gleichwerigkeit TRUE wenn $a und $b die gleichen Schlüssel- und Wert-Paare enthalten. $a === $b Identität TRUE wenn $a und $b die ...
PHP Manual
[ Array-Operatoren php.net ]

PHP Funktion
Array Funktionen ( phplist Code 48% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
...Array Funktionen V. Array Funktionen Einführung Diese Funktionen erlauben es, Arrays auf verschiedene Arten zu manipulieren bzw. mit ihnen zu interagieren. Arrays sind wichtig, um Gruppen von Variablen zu verwalten, zu bearbeiten, oder zu speichern. Es werden einfache und mehrdimensionale Arrays unterstützt, welche entweder vom Benutzer oder von einer anderen Funktion erstellt ...
PHP Manual
[ Array Funktionen php.net ]

PHP Funktion
array_diff_uassoc ( phplist Code 45% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_diff_uassoc -- Berechnet den Unterschied von Arrays mit zusätzlicher Indexprüfung welche durch eine benutzerdefinierte Funktion vorgenommen wird
Vorschau
...array_diff_uassoc array_diff_uassoc (PHP 5) array_diff_uassoc -- Berechnet den Unterschied von Arrays mit zusätzlicher Indexprüfung, welche durch eine benutzerdefinierte Funktion vorgenommen wird Beschreibung array array_diff_uassoc ( array array1, array array2 [, array ..., callback key_compare_func] ) array_diff_uassoc() gibt ein array , welches alle Werte aus array1 enthält, die in keinem der anderen Argumente enthalten sind. Beachten...
PHP Manual
[ array_diff_uassoc php.net ]

PHP Funktion
array_udiff_assoc ( phplist Code 45% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_udiff_assoc -- Ermittelt den Unterschied zwischen Arrays mit zusätzlicher Indexprüfung vergleicht mittels einer Callbackfunktion
Vorschau
...array_udiff_assoc array_udiff_assoc (PHP 5) array_udiff_assoc -- Ermittelt den Unterschied zwischen Arrays mit zusätzlicher Indexprüfung, vergleicht mittels einer Callbackfunktion Beschreibung array array_udiff_assoc ( array array1, array array2 [, array ..., callback data_compare_func] ) array_udiff_assoc() gibt ein Array mit allen Werten von array1 , welche in keinem der anderen Argumente enthalten sind, . Beachten Sie, dass Schlüssel ...
PHP Manual
[ array_udiff_assoc php.net ]

PHP Funktion
curl_setopt_array ( phplist Code 45% Relevanz )
Rubrik
cURL Client URL Bibiothek-Funktionen
Kurzform
curl_setopt_array -- Set multiple options for a CURL transfer
Vorschau
...curl_setopt_array curl_setopt_array (PHP 5 CVS only) curl_setopt_array -- Set multiple options for a CURL transfer Beschreibung bool curl_setopt_array ( resource ch, array options ) Sets multiple options for a CURL session. This function is useful for setting a large amount of CURL options without repetitively calling curl_setopt() . Parameter Liste ch The CURL session the options should...
PHP Manual
[ curl_setopt_array php.net ]

PHP Funktion
fbsql_fetch_array ( phplist Code 45% Relevanz )
Rubrik
FrontBase Funktionen
Kurzform
fbsql_fetch_array -- Fetch a result row as an associative array a numeric array or both
Vorschau
...fbsql_fetch_array fbsql_fetch_array (PHP 4 >= 4.0.6, PHP 5) fbsql_fetch_array -- Fetch a result row as an associative array, a numeric array, or both Beschreibung array fbsql_fetch_array ( resource result [, int result_type] ) Returns an array that corresponds to the fetched row, or FALSE if there are no more rows. fbsql_fetch_array() is an extended version of fbsql_fetch_row() . In addition to storing ...
PHP Manual
[ fbsql_fetch_array php.net ]

PHP Funktion
iterator_to_array ( phplist Code 45% Relevanz )
Rubrik
Standard PHP Library (SPL) Functions
Kurzform
iterator_to_array -- Copy the iterator into an array
Vorschau
...iterator_to_array iterator_to_array (PHP 5 >= 5.1.0RC1) iterator_to_array -- Copy the iterator into an array Description array iterator_to_array ( IteratorAggregate iterator ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. iterator_count spl_autoload_call...
PHP Manual
[ iterator_to_array php.net ]

PHP Funktion
maxdb_fetch_array ( phplist Code 45% Relevanz )
Rubrik
MaxDB PHP Extension
Kurzform
maxdb_fetch_array (no version information might be only in CVS)result->fetch_array -- Fetch a result row as an associative a numeric array or both
Vorschau
...maxdb_fetch_array maxdb_fetch_array (PECL) maxdb_fetch_array (no version information, might be only in CVS) result->fetch_array -- Fetch a result row as an associative, a numeric array, or both Description Procedural style: mixed maxdb_fetch_array ( resource result [, int resulttype] ) Object oriented style (method): class result { mixed fetch_array ( [int resulttype] ) } Returns an array that ...
PHP Manual
[ maxdb_fetch_array php.net ]

PHP Funktion
mssql_fetch_array ( phplist Code 45% Relevanz )
Rubrik
Microsoft SQL Server Funktionen
Kurzform
mssql_fetch_array -- Liefert einen Ergebnis-Datensatz als assoziatives Array als numerisches Array oder beides
Vorschau
...mssql_fetch_array mssql_fetch_array (PHP 3, PHP 4, PHP 5) mssql_fetch_array -- Liefert einen Ergebnis-Datensatz als assoziatives Array, als numerisches Array oder beides Beschreibung array mssql_fetch_array ( resource Ergebnis [, int Ergebnis-Typ] ) Gibt ein Array mit dem gelieferten Datensatz oder FALSE , wenn es keine en Datensätze gibt. mssql_fetch_array() ist die erte Version von mssql_fetch_row() . Zusätzlich zum ...
PHP Manual
[ mssql_fetch_array php.net ]

PHP Funktion
mysql_fetch_array ( phplist Code 45% Relevanz )
Rubrik
MySQL Funktionen
Kurzform
mysql_fetch_array -- Liefert einen Datensatz als assoziatives Array als numerisches Array oder beides
Vorschau
...mysql_fetch_array mysql_fetch_array (PHP 3, PHP 4, PHP 5) mysql_fetch_array -- Liefert einen Datensatz als assoziatives Array, als numerisches Array oder beides Beschreibung array mysql_fetch_array ( resource Ergebnis-Kennung [, int Ergebnistyp] ) Liefert ein Array das dem aktuellen Datensatz entspricht oder FALSE , wenn keine en Datensätze vorliegen. mysql_fetch_array() ist eine erte Version von mysql_fetch_row...
PHP Manual
[ mysql_fetch_array php.net ]

PHP Funktion
sesam_fetch_array ( phplist Code 45% Relevanz )
Rubrik
SESAM Datenbankfunktionen
Kurzform
sesam_fetch_array -- Liefert eine Zeile als assoziatives Array
Vorschau
...sesam_fetch_array sesam_fetch_array (PHP 3 CVS only) sesam_fetch_array -- Liefert eine Zeile als assoziatives Array Beschreibung array sesam_fetch_array ( string result_id [, int whence [, int offset]] ) Liefert ein Array, das der gelesenen Zeile entspricht oder FALSE falls es keine en Zeilen mehr gibt. sesam_fetch_array() ist eine Alternative zur Funktion sesam_fetch_row() . Die Daten werden anstatt in numerischen Indizes des ...
PHP Manual
[ sesam_fetch_array php.net ]

PHP Funktion
sesam_field_array ( phplist Code 45% Relevanz )
Rubrik
SESAM Datenbankfunktionen
Kurzform
sesam_field_array -- Liefert Meta-Information über einzelne Ergebnisspalten
Vorschau
...sesam_field_array sesam_field_array (PHP 3 CVS only) sesam_field_array -- Liefert Meta-Information über einzelne Ergebnisspalten Beschreibung array sesam_field_array ( string result_id ) result_id ist eine gültige Ergebniskennung (?) der Funktion sesam_query() . Liefert eine gemischtes assoziativ indiziertes Array (???) mit Meta-Informationen (Spaltenname, Typ, Genauigkeit, ...) ü...
PHP Manual
[ sesam_field_array php.net ]

PHP Funktion
array_count_values ( phplist Code 43% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_count_values -- Zählt die Werte eines Arrays
Vorschau
...array_count_values array_count_values (PHP 4, PHP 5) array_count_values -- Zählt die Werte eines Arrays Beschreibung array array_count_values ( array input ) array_count_values() gibt ein Array , in dem die Werte des Arrays input als Schlüssel, und deren Anzahl als Werte angegeben sind. Beispiel 1. array_count_values() <?php $array = array( 1 , "hello" , 1 , "world" , "hello" ); print_r ( array_count_values ( $array )); ?> Das oben ...
PHP Manual
[ array_count_values php.net ]

PHP Funktion
array_udiff_uassoc ( phplist Code 43% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_udiff_uassoc -- Ermittelt den Unterschied zwischen Arrays mit zusätzlicher Indexprüfung vergleicht Daten und Indizes mittels einer Callbackfunktion
Vorschau
...array_udiff_uassoc array_udiff_uassoc (PHP 5) array_udiff_uassoc -- Ermittelt den Unterschied zwischen Arrays mit zusätzlicher Indexprüfung, vergleicht Daten und Indizes mittels einer Callbackfunktion Beschreibung array array_udiff_uassoc ( array array1, array array2 [, array ..., callback data_compare_func, callback key_compare_func] ) array_udiff_uassoc() gibt ein Array mit allen Werten von array1 , welche in keinem der anderen Argumente ...
PHP Manual
[ array_udiff_uassoc php.net ]

PHP Funktion
ArrayIterator::key ( phplist Code 43% Relevanz )
Rubrik
Standard PHP Library (SPL) Functions
Kurzform
ArrayIterator::key -- Return current array key
Vorschau
...ArrayIterator::key ArrayIterator::key (no version information, might be only in CVS) ArrayIterator::key -- Return current array key Description mixed ArrayIterator::key ( void ) This function returns the current array key Beispiel 1. ArrayIterator::key() example <?php $array = array( 'key' => 'value' ); $arrayobject = new ArrayObject ( $array ); $iterator = $arrayobject -> getIterator (); echo $iterator -> key (); //key ?&...
PHP Manual
[ ArrayIterator::key php.net ]

PHP Funktion
filter_input_array ( phplist Code 43% Relevanz )
Rubrik
Filter Functions
Kurzform
filter_input_array -- Gets multiple variables from outside PHP and optionally filters them
Vorschau
...filter_input_array filter_input_array (no version information, might be only in CVS) filter_input_array -- Gets multiple variables from outside PHP and optionally filters them Beschreibung mixed filter_input_array ( int type [, mixed definition] ) This function is useful for retrieving many values without repetitively calling filter_input() . Parameter Liste type One of INPUT_GET , INPUT_POST , INPUT_COOKIE , INPUT_SERVER , ...
PHP Manual
[ filter_input_array php.net ]

PHP Funktion
ingres_fetch_array ( phplist Code 43% Relevanz )
Rubrik
Ingres II Funktionen
Kurzform
ingres_fetch_array -- Liest eine Zeile der Ergebnismenge in ein Array ein
Vorschau
...ingres_fetch_array ingres_fetch_array (PHP 4 >= 4.0.2, PHP 5 <= 5.0.4) ingres_fetch_array -- Liest eine Zeile der Ergebnismenge in ein Array ein Beschreibung array ingres_fetch_array ( [int result_type [, resource link]] ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkündigung ändern...
PHP Manual
[ ingres_fetch_array php.net ]

PHP Funktion
ldap_read ( phplist Code 43% Relevanz )
Rubrik
LDAP Funktionen
Kurzform
ldap_read -- Lesen eines Eintrags
Vorschau
...ldap_read ldap_read (PHP 3, PHP 4, PHP 5) ldap_read -- Lesen eines Eintrags Beschreibung resource ldap_read ( resource Verbindungs-Kennung, string basis_dn, string filter [, array merkmale [, int nur_werte [, int größenbegrenzung [, int zeitbegrenzung [, int deref]]]]] ) Rückgabewert: Im Erfolgsfall eine Such-Ergebnis-Kennung, FALSE im Fehlerfall. Die ldap_read() Funktion führt die Suche für ...
PHP Manual
[ ldap_read php.net ]

PHP Funktion
msession_get_array ( phplist Code 43% Relevanz )
Rubrik
Mohawk Software Session Handler Funktionen
Kurzform
msession_get_array -- Gibt ein Array mit ... ? zurück
Vorschau
...msession_get_array msession_get_array (PHP 4 >= 4.2.0, PHP 5) msession_get_array -- Gibt ein Array mit ... ? Beschreibung array msession_get_array ( string session ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. msession_find msession_get_data...
PHP Manual
[ msession_get_array php.net ]

PHP Funktion
msession_set_array ( phplist Code 43% Relevanz )
Rubrik
Mohawk Software Session Handler Funktionen
Kurzform
msession_set_array -- Setzt ein Array mit ...?
Vorschau
...msession_set_array msession_set_array (PHP 4 >= 4.2.0, PHP 5) msession_set_array -- Setzt ein Array mit ...? Beschreibung bool msession_set_array ( string session, array tuples ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. msession_randstr msession_set_data...
PHP Manual
[ msession_set_array php.net ]

PHP Funktion
mysqli_fetch_array ( phplist Code 43% Relevanz )
Rubrik
Verbesserte MySQL Erweiterung
Kurzform
mysqli_fetch_array (no version information might be only in CVS)result->fetch_array -- Fetch a result row as an associative a numeric array or both
Vorschau
...mysqli_fetch_array mysqli_fetch_array (PHP 5) mysqli_fetch_array (no version information, might be only in CVS) result->fetch_array -- Fetch a result row as an associative, a numeric array, or both Description Procedural style: mixed mysqli_fetch_array ( mysqli_result result [, int resulttype] ) Object oriented style (method): class mysqli_result { mixed fetch_array ( [int resulttype] ) } Returns an array ...
PHP Manual
[ mysqli_fetch_array php.net ]

PHP Funktion
parse_str ( phplist Code 43% Relevanz )
Rubrik
String-Funktionen
Kurzform
parse_str -- Überträgt einen String in Variable
Vorschau
...parse_str parse_str (PHP 3, PHP 4, PHP 5) parse_str -- Überträgt einen String in Variable Beschreibung void parse_str ( string str [, array &arr] ) Durchsucht str , als ob er der Query-String einer URL-Übergabe via GET wäre, und erstellt Variablen im aktuellen Geltungsbereich. Ist der zweite Parameter arr angegeben, werden die Variablen in diesem Array ...
PHP Manual
[ parse_str php.net ]

PHP Funktion
parse_url ( phplist Code 43% Relevanz )
Rubrik
URL Funktionen
Kurzform
parse_url -- Analysiert einen URL und gibt seine Bestandteile zurück
Vorschau
... parse_url (PHP 3, PHP 4, PHP 5) parse_url -- Analysiert einen URL und gibt seine Bestandteile Beschreibung mixed parse_url ( string url [, int component] ) Diese Funktion parst einen URL und gibt ein assoziatives Array , das die im URL vorhandenen Komponenten enthält. Diese Funktion ist nicht dazu gedacht, einen gegebenen URL zu validieren, sondern es gliedert einen URL in die aufgeführten Bestandteile. Unvollständige URLs werden als ...
PHP Manual
[ parse_url php.net ]

PHP Funktion
sqlite_array_query ( phplist Code 43% Relevanz )
Rubrik
SQLite
Kurzform
sqlite_array_query -- Führt eine Datenbankabfrage durch und liefert das komplette Abfrageergebnis als Array zurück.
Vorschau
...sqlite_array_query sqlite_array_query (PHP 5) sqlite_array_query -- Führt eine Datenbankabfrage durch und liefert das komplette Abfrageergebnis als Array . Beschreibung array sqlite_array_query ( resource db, string query [, int result_type [, bool decode_binary]] ) sqlite_array_query() ist vergleichbar mit der Nutzung von sqlite_query() und dann sqlite_fetch_array() für jede Zeile des Abfrageergebnisses ...
PHP Manual
[ sqlite_array_query php.net ]

PHP Funktion
sqlite_fetch_array ( phplist Code 43% Relevanz )
Rubrik
SQLite
Kurzform
sqlite_fetch_array -- Holt die nächste Zeile aus einem Datenbankergebnis und gibt sie als Array zurück.
Vorschau
...sqlite_fetch_array sqlite_fetch_array (PHP 5) sqlite_fetch_array -- Holt die nächste Zeile aus einem Datenbankergebnis und gibt sie als Array . Beschreibung array sqlite_fetch_array ( resource Ergebnis [, int Ergebnis_Typ [, bool decode_binary]] ) Holt die nächste Zeile aus einem gegebenen Ergebnis -Handle. Wenn in diesem keine en Zeilen enthalten sind, wird FALSE geliefert, ansonsten ein ...
PHP Manual
[ sqlite_fetch_array php.net ]

PHP Funktion
sybase_fetch_array ( phplist Code 43% Relevanz )
Rubrik
Sybase Funktionen
Kurzform
sybase_fetch_array -- Fetch row as array
Vorschau
...sybase_fetch_array sybase_fetch_array (PHP 3, PHP 4, PHP 5) sybase_fetch_array -- Fetch row as array Description array sybase_fetch_array ( resource result ) Returns an array that corresponds to the fetched row, or FALSE if there are no more rows. sybase_fetch_array() is an extended version of sybase_fetch_row() . In addition to storing the data in the numeric indices of the result array, it ...
PHP Manual
[ sybase_fetch_array php.net ]

PHP Funktion
array_intersect_key ( phplist Code 42% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_intersect_key -- Ermittelt die Schnittmenge von Arrays indem es die Schlüssel vergleicht
Vorschau
...array_intersect_key array_intersect_key (PHP 5 >= 5.1.0RC1) array_intersect_key -- Ermittelt die Schnittmenge von Arrays, indem es die Schlüssel vergleicht Beschreibung array array_intersect_key ( array array1, array array2 [, array ...] ) array_intersect_key() gibt ein Array , welches alle Werte von array1 enthält, die Schlüssel besitzen die in allen anderen Argumente enthalten sind. Beispiel 1. array_intersect_key() Beispiel <?php $...
PHP Manual
[ array_intersect_key php.net ]

PHP Funktion
array_intersect_ukey ( phplist Code 40% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_intersect_ukey -- Ermittelt die Schnittmenge zweier Arrays mittels eines durch eine Callbackfunktion durchgeführten Schlüsselvergleiches
Vorschau
...array_intersect_ukey array_intersect_ukey (PHP 5 >= 5.1.0RC1) array_intersect_ukey -- Ermittelt die Schnittmenge zweier Arrays mittels eines durch eine Callbackfunktion durchgeführten Schlüsselvergleiches Beschreibung array array_intersect_ukey ( array array1, array array2 [, array ..., callback key_compare_func] ) array_intersect_ukey() gibt ...
PHP Manual
[ array_intersect_ukey php.net ]

PHP Funktion
array_walk_recursive ( phplist Code 40% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_walk_recursive -- Wendet eine Benutzerfunktion rekursiv auf jedes Element eines Arrays an
Vorschau
...array_walk_recursive array_walk_recursive (PHP 5) array_walk_recursive -- Wendet eine Benutzerfunktion rekursiv auf jedes Element eines Arrays an Beschreibung bool array_walk_recursive ( array &input, callback funcname [, mixed userdata] ) Wendet die mittels funcname angegebene Benutzerfunktion für jedes Element von input an. Diese Funktion steigt tiefer in Arrays hinab. üblicherweise benötigt funcname ...
PHP Manual
[ array_walk_recursive php.net ]

PHP Funktion
ArrayIterator::valid ( phplist Code 40% Relevanz )
Rubrik
Standard PHP Library (SPL) Functions
Kurzform
ArrayIterator::valid -- Check whether array contains more entries
Vorschau
...ArrayIterator::valid ArrayIterator::valid (no version information, might be only in CVS) ArrayIterator::valid -- Check whether array contains more entries Description bool ArrayIterator::valid ( void ) This function checks if the array contains any more entries. Beispiel 1. ArrayIterator::valid() example <?php $array = array( '1' => 'one' ); $arrayobject = new ArrayObject ( $array ); $...
PHP Manual
[ ArrayIterator::valid php.net ]

PHP Funktion
asort ( phplist Code 40% Relevanz )
Rubrik
Array Funktionen
Kurzform
asort -- Sortiert ein Array und behält die Indexverbindungen
Vorschau
...asort asort (PHP 3, PHP 4, PHP 5) asort -- Sortiert ein Array und behält die Indexverbindungen Beschreibung bool asort ( array &array [, int sort_flags] ) Diese Funktion sortiert ein Array so, dass der Zusammenhang zwischen den Indizes und den entsprechenden Arrayelementen erhalten bleibt. Dies wird hauptsächlich bei assoziativen Arrays verwendet, bei denen die aktuelle Reihenfolge der Elemente bedeutend ...
PHP Manual
[ asort php.net ]

PHP Funktion
call_user_func_array ( phplist Code 40% Relevanz )
Rubrik
Function Handling functions
Kurzform
call_user_func_array -- Call a user function given with an array of parameters
Vorschau
...call_user_func_array call_user_func_array (PHP 4 >= 4.0.4, PHP 5) call_user_func_array -- Call a user function given with an array of parameters Description mixed call_user_func_array ( callback function, array param_arr ) Call a user defined function given by function , with the parameters in param_arr . For example: Beispiel 1. call_user_func_array() example <?php function debug ( $var , $val ) { echo "***DEBUGGING \n ...
PHP Manual
[ call_user_func_array php.net ]

PHP Funktion
range ( phplist Code 40% Relevanz )
Rubrik
Array Funktionen
Kurzform
range -- Erstellt ein Array mit einem Bereich von Elementen
Vorschau
...range range (PHP 3 >= 3.0.8, PHP 4, PHP 5) range -- Erstellt ein Array mit einem Bereich von Elementen Beschreibung array range ( mixed low, mixed high [, number step] ) range() gibt ein Array mit Elementen im Bereich von low bis high . Wenn low > high, wird die Sequenz von high nach low sein. Neuer Parameter: Der optionale Parameter step wurde in 5.0.0 eingeführt. Ist ein step Wert angegeben, wird es ...
PHP Manual
[ range php.net ]

PHP Funktion
rsort ( phplist Code 40% Relevanz )
Rubrik
Array Funktionen
Kurzform
rsort -- Sortiert ein Array in umgekehrter Reihenfolge
Vorschau
...rsort rsort (PHP 3, PHP 4, PHP 5) rsort -- Sortiert ein Array in umgekehrter Reihenfolge Beschreibung bool rsort ( array &array [, int sort_flags] ) Diese Funktion sortiert ein Array in umgekehrter Reihenfolge (vom höchsten zum niedrigsten Wert). Anmerkung: This functionassigns new keys for the elements in array .It will remove any existing keys you may have assigned, ratherthan just reordering the ...
PHP Manual
[ rsort php.net ]

PHP Funktion
strtr ( phplist Code 40% Relevanz )
Rubrik
String-Funktionen
Kurzform
strtr -- Tauscht bestimmte Zeichen aus
Vorschau
...strtr strtr (PHP 3, PHP 4, PHP 5) strtr -- Tauscht bestimmte Zeichen aus Beschreibung string strtr ( string str, string from, string to ) string strtr ( string str, array replace_pairs ) Diese Funktion gibt eine Kopie von str , in der alle Vorkommen jedes Zeichens von from in das korrespondierende Zeichen in to umgewandelt wurde. Haben from und to eine unterschiedliche Länge, werden die...
PHP Manual
[ strtr php.net ]

PHP Funktion
var_export ( phplist Code 40% Relevanz )
Rubrik
Funktionen zur Behandlung von Variablen
Kurzform
var_export -- Outputs or returns a parsable string representation of a variable
Vorschau
... Returns the variable representation when the return parameter is used and evaluates to TRUE . Otherwise, this function will return NULL . ChangeLog Version Beschreibung 5.1.0 Possibility to export classes and arrays containing classes using the __set_state magic method. Beispiele Beispiel 1. var_export() Examples <?php $a = array ( 1 , 2 , array ( "a" , "b" , "c" )); var_export ( $a ); ?> Das oben gezeigte Beispiel erzeugt ...
PHP Manual
[ var_export php.net ]

PHP Funktion
array_change_key_case ( phplist Code 38% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_change_key_case -- Liefert ein Array mit allen String-Schlüsseln in Klein- oder Großbuchstaben
Vorschau
...array_change_key_case array_change_key_case (PHP 4 >= 4.2.0, PHP 5) array_change_key_case -- Liefert ein Array mit allen String-Schlüsseln in Klein- oder Großbuchstaben Beschreibung array array_change_key_case ( array input [, int case] ) array_change_key_case() wandelt die Schlüssel des Arrays input in Klein- bzw. Großbuchstaben um. Die Richtung der Umwandlung wird mit dem optionalen Parameter case festgelegt, mit dem die zwei ...
PHP Manual
[ array_change_key_case php.net ]

PHP Funktion
array_intersect_assoc ( phplist Code 38% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_intersect_assoc -- Ermittelt die Schnittmenge von Arrays mit Indexprüfung
Vorschau
...array_intersect_assoc array_intersect_assoc (PHP 4 >= 4.3.0, PHP 5) array_intersect_assoc -- Ermittelt die Schnittmenge von Arrays mit Indexprüfung Beschreibung array array_intersect_assoc ( array array1, array array2 [, array ...] ) array_intersect_assoc() gibt ein Array mit allen Werten von array1 , die auch in allen anderen Argumenten enthalten sind, . Beachten Sie, dass anders als von array_intersect() die Schlüssel zum Vergleich...
PHP Manual
[ array_intersect_assoc php.net ]

PHP Funktion
array_merge_recursive ( phplist Code 38% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_merge_recursive -- Führt ein oder mehrere Arrays rekursiv zusammen
Vorschau
...array_merge_recursive array_merge_recursive (PHP 4 >= 4.0.1, PHP 5) array_merge_recursive -- Führt ein oder mehrere Arrays rekursiv zusammen Beschreibung array array_merge_recursive ( array array1 [, array ...] ) array_merge_recursive() fügt die Elemente von einem oder mehreren Arrays zusammen, so dass die Werte des einen Arrays an die des vorigen angehängt werden. Das daraus resultierende Array wird gegeben. Haben die angegebenen ...
PHP Manual
[ array_merge_recursive php.net ]

PHP Funktion
ArrayIterator::rewind ( phplist Code 38% Relevanz )
Rubrik
Standard PHP Library (SPL) Functions
Kurzform
ArrayIterator::rewind -- Rewind array back to the start
Vorschau
...ArrayIterator::rewind ArrayIterator::rewind (no version information, might be only in CVS) ArrayIterator::rewind -- Rewind array back to the start Description void ArrayIterator::rewind ( void ) This function rewinds the iterator to the beginning. Beispiel 1. ArrayIterator::rewind() example <?php $arrayobject = new ArrayObject (); $arrayobject [] = 'zero' ; $arrayobject [] = 'one...
PHP Manual
[ ArrayIterator::rewind php.net ]

PHP Funktion
imap_errors ( phplist Code 38% Relevanz )
Rubrik
IMAP POP3 und NNTP Funktionen
Kurzform
imap_errors -- Diese Funktion liefert alle bisher aufgetretenen Fehlermeldungen
Vorschau
...imap_errors imap_errors (PHP 3 >= 3.0.12, PHP 4, PHP 5) imap_errors -- Diese Funktion liefert alle bisher aufgetretenen Fehlermeldungen Beschreibung array imap_errors ( void ) Diese Funktion liefert in Form eines String-Arrays alle seit Beginn des Requests bzw. seit dem letzten Aufruf von imap_errors() aufgetretenen Fehlermeldung. Der Fehler-Stack wird dabei gelöscht, so ...
PHP Manual
[ imap_errors php.net ]

PHP Funktion
imap_thread ( phplist Code 38% Relevanz )
Rubrik
IMAP POP3 und NNTP Funktionen
Kurzform
imap_thread -- Returns a tree of threaded message
Vorschau
...imap_thread imap_thread (PHP 4 >= 4.1.0, PHP 5) imap_thread -- Returns a tree of threaded message Description array imap_thread ( resource stream_id [, int options] ) imap_thread() returns an associative array containing a tree of messages threaded by REFERENCES , or FALSE on error. Every message in the current mailbox will be represented by three entries in the resulting array: $thread["XX.num"] - current message number $...
PHP Manual
[ imap_thread php.net ]

PHP Funktion
str_replace ( phplist Code 38% Relevanz )
Rubrik
String-Funktionen
Kurzform
str_replace -- Ersetzt alle Vorkommen des Suchstrings durch einen anderen String
Vorschau
...str_replace -- Ersetzt alle Vorkommen des Suchstrings durch einen anderen String Beschreibung mixed str_replace ( mixed search, mixed replace, mixed subject [, int &count] ) Diese Funktion gibt einen String oder ein Array , in dem alle Vorkommen von search innerhalb von subject durch den angegebenen replace -Wert ersetzt wurden. Wenn Sie keine ausgefallenen Ersetzungsregeln (wie Regular Expressions) benötigen, sollten Sie immer diese ...
PHP Manual
[ str_replace php.net ]

PHP Funktion
udm_alloc_agent_array ( phplist Code 38% Relevanz )
Rubrik
mnoGoSearch Funktionen
Kurzform
udm_alloc_agent_array -- Allocate mnoGoSearch session
Vorschau
...udm_alloc_agent_array udm_alloc_agent_array (PHP 4 >= 4.3.3, PHP 5 <= 5.0.4) udm_alloc_agent_array -- Allocate mnoGoSearch session Description resource udm_alloc_agent_array ( array databases ) udm_alloc_agent_array() will create an agent with multiple database connections. The array databases must contain one database URL per element, analog to the first parameter of udm_alloc_agent() . See also: udm_alloc_agent() . ...
PHP Manual
[ udm_alloc_agent_array php.net ]

PHP Funktion
array_intersect_uassoc ( phplist Code 37% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_intersect_uassoc -- Ermittelt die Schnittmenge von Arrays mit Indexprüfung; vergleicht Indizes mit einer Callbackfunktion
Vorschau
...array_intersect_uassoc array_intersect_uassoc (PHP 5) array_intersect_uassoc -- Ermittelt die Schnittmenge von Arrays mit Indexprüfung; vergleicht Indizes mit einer Callbackfunktion Beschreibung array array_intersect_uassoc ( array array1, array array2 [, array ..., callback key_compare_func] ) array_intersect_uassoc() gibt ein Array mit allen Werten von array1 , die auch in allen anderen Argumenten enthalten sind, . ...
PHP Manual
[ array_intersect_uassoc php.net ]

PHP Funktion
array_uintersect_assoc ( phplist Code 37% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_uintersect_assoc -- Ermittelt die Schnittmenge von Arrays mit zusätzlicher Indexprüfung vergleicht Daten mittels einer Callbackfunktion
Vorschau
...array_uintersect_assoc array_uintersect_assoc (PHP 5) array_uintersect_assoc -- Ermittelt die Schnittmenge von Arrays mit zusätzlicher Indexprüfung, vergleicht Daten mittels einer Callbackfunktion Beschreibung array array_uintersect_assoc ( array array1, array array2 [, array ..., callback data_compare_func] ) array_uintersect_assoc() gibt ein Array mit allen Werten aus array1 , die ebenfalls in allen anderen Argumenten enthalten sind. ...
PHP Manual
[ array_uintersect_assoc php.net ]

PHP Funktion
ArrayIterator::current ( phplist Code 37% Relevanz )
Rubrik
Standard PHP Library (SPL) Functions
Kurzform
ArrayIterator::current -- Return current array entry
Vorschau
...ArrayIterator::current ArrayIterator::current (no version information, might be only in CVS) ArrayIterator::current -- Return current array entry Description mixed ArrayIterator::current ( void ) This function returns the current array entry Beispiel 1. ArrayIterator::current() example <?php $array = array( '1' => 'one' , '2' => 'two' , '3' => 'three' ); $arrayobject = new ...
PHP Manual
[ ArrayIterator::current php.net ]

PHP Funktion
call_user_method_array ( phplist Code 37% Relevanz )
Rubrik
Klassen- und Objekt-Funktionen
Kurzform
call_user_method_array -- Call a user method given with an array of parameters [deprecated]
Vorschau
...call_user_method_array call_user_method_array (PHP 4 >= 4.0.5, PHP 5) call_user_method_array -- Call a user method given with an array of parameters [deprecated] Description mixed call_user_method_array ( string method_name, object &obj, array paramarr ) Warnung The call_user_method_array() function is deprecated as of PHP 4.1.0, use the call_user_func_array() variety with the array(&$obj, "method_name") syntax ...
PHP Manual
[ call_user_method_array php.net ]

PHP Funktion
oci_bind_array_by_name ( phplist Code 37% Relevanz )
Rubrik
Oracle 8 Funktionen
Kurzform
oci_bind_array_by_name -- Binds PHP array to Oracle PL/SQL array by name
Vorschau
...oci_bind_array_by_name writeToFile"HREF="function.oci-lob-writetofile.html"> oci_bind_array_by_name (no version information, might be only in CVS) oci_bind_array_by_name -- Binds PHP array to Oracle PL/SQL array by name Description bool oci_bind_array_by_name ( resource stmt, string name, array &var_array, int max_table_length [, int max_item_length [, int type]] ) Anmerkung: This function is available since OCI8 release 1.2 ...
PHP Manual
[ oci_bind_array_by_name php.net ]

PHP Funktion
array_uintersect_uassoc ( phplist Code 36% Relevanz )
Rubrik
Array Funktionen
Kurzform
array_uintersect_uassoc -- Ermittelt die Schnittmenge von Arrays mit zusätzlicher Indexprüfung vergleicht Daten und Schlüssel mittels einer Callbackfunktion
Vorschau
...array_uintersect_uassoc array_uintersect_uassoc (PHP 5) array_uintersect_uassoc -- Ermittelt die Schnittmenge von Arrays mit zusätzlicher Indexprüfung, vergleicht Daten und Schlüssel mittels einer Callbackfunktion Beschreibung array array_uintersect_uassoc ( array array1, array array2 [, array ..., callback data_compare_func, callback ...
PHP Manual
[ array_uintersect_uassoc php.net ]

PHP Funktion
krsort ( phplist Code 36% Relevanz )
Rubrik
Array Funktionen
Kurzform
krsort -- Sortiert ein Array nach Schlüsseln in umgekehrter Reihenfolge
Vorschau
...krsort krsort (PHP 3 >= 3.0.13, PHP 4, PHP 5) krsort -- Sortiert ein Array nach Schlüsseln in umgekehrter Reihenfolge Beschreibung bool krsort ( array &array [, int sort_flags] ) Sortiert ein Array nach Schlüsseln in umgekehrter Reihenfolge, wobei die Zuordnungen zwischen Schlüssel und Wert erhalten bleiben. Dies ist hauptsächlich bei assoziativen Arrays hilfreich. Gibt bei Erfolg TRUE , im Fehlerfall FALSE . ...
PHP Manual
[ krsort php.net ]

PHP Funktion
uasort ( phplist Code 36% Relevanz )
Rubrik
Array Funktionen
Kurzform
uasort -- Sortiert ein Array mittels einer benutzerdefinierten Vergleichsfunktion und behält Indexassoziationen bei.
Vorschau
...uasort uasort (PHP 3 >= 3.0.4, PHP 4, PHP 5) uasort -- Sortiert ein Array mittels einer benutzerdefinierten Vergleichsfunktion und behält Indexassoziationen bei. Beschreibung bool uasort ( array &array, callback cmp_function ) Diese Funktion sortiert ein Array so, dass die Beziehung der Indices zu den Arrayelementen beibehalten bleibt. Dies wird hauptsächlich bei assoziativen Arrays angewandt, wenn die aktuelle ...
PHP Manual
[ uasort php.net ]

PHP Funktion
dbase_create ( phplist Code 35% Relevanz )
Rubrik
dBase Funktionen
Kurzform
dbase_create -- Erzeugt eine dBase-Datenbank
Vorschau
...dbase_create dbase_create (PHP 3, PHP 4, PHP 5) dbase_create -- Erzeugt eine dBase-Datenbank Beschreibung: int dbase_create ( string filename, array fields ) Der fields -Parameter ist ein Array, das aus en Arrays besteht. Jedes Array beschreibt das Format eines Feldes der Datenbank. Jedes Feld-Array besteht aus einem Namen, einem Zeichen zur Festlegung des Feldtyps, der Länge und dem Wert für die Anzahl der Nachkommastellen. Die...
PHP Manual
[ dbase_create php.net ]

PHP Funktion
mb_parse_str ( phplist Code 35% Relevanz )
Rubrik
Multibyte String Functions
Kurzform
mb_parse_str -- Parse GET/POST/COOKIE data and set global variable
Vorschau
...mb_parse_str mb_parse_str (PHP 4 >= 4.0.6, PHP 5) mb_parse_str -- Parse GET/POST/COOKIE data and set global variable Description bool mb_parse_str ( string encoded_string [, array &result] ) mb_parse_str() parses GET/POST/COOKIE data and sets global variables. Since PHP does not provide raw POST/COOKIE data, it can only used for GET data for now. It preses URL encoded data, detects encoding, ...
PHP Manual
[ mb_parse_str php.net ]

PHP Funktion
preg_replace ( phplist Code 35% Relevanz )
Rubrik
Reguläre Ausdrücke Funktionen (Perl-kompatibel)
Kurzform
preg_replace -- Sucht und ersetzt einen regulären Ausdruck
Vorschau
... Zahl 1 wollen oder nur die Rückreferenzierung \\11 . In diesem Fall ist die Lösung, \${1}1 zu verwenden. Damit wird eine isolierte Rückreferenzierung $1 erzeugt und die 1 bleibt ein Zahlensymbol. Falls Zeichenkette ein Array ist, wird das Suchen und Ersetzen auf jedes Element von Zeichenkette angewandt und der Rückgabewert ist ebenfalls ein Array. Mit dem Modifikator e wird der Parameter Ersatz nach den entsprechenden Ersetzungen der ...
PHP Manual
[ preg_replace php.net ]

PHP Funktion
str_ireplace ( phplist Code 35% Relevanz )
Rubrik
String-Funktionen
Kurzform
str_ireplace -- Groß- und Kleinschreibungsunabhängige Version von str_replace().
Vorschau
...str_ireplace -- Groß- und Kleinschreibungsunabhängige Version von str_replace() . Beschreibung mixed str_ireplace ( mixed search, mixed replace, mixed subject [, int &count] ) Die Funktion gibt einen String oder ein Array , in dem alle Vorkommen von search innerhalb von subject unabhängig von deren Groß- oder Kleinschreibung gegen den entsprechenden replace -Wert ausgetauscht wurden. Sofern Sie keine speziellen Ersetzungsregeln verwenden, ...
PHP Manual
[ str_ireplace php.net ]

PHP Funktion
ArrayObject::__construct ( phplist Code 34% Relevanz )
Rubrik
Standard PHP Library (SPL) Functions
Kurzform
ArrayObject::__construct -- Construct a new array object
Vorschau
...ArrayObject::__construct ArrayObject::__construct (no version information, might be only in CVS) ArrayObject::__construct -- Construct a new array object Description ArrayObject ArrayObject::__construct ( mixed input ) This constructs a new array object. The input parameter accepts an array or another ArrayObject. Beispiel 1. ArrayObject::__construct() example <?php $array = array( '1' => 'one...
PHP Manual
[ ArrayObject::__construct php.net ]

PHP Funktion
foreach ( phplist Code 33% Relevanz )
Rubrik
Kontroll-Strukturen
Kurzform
-----
Vorschau
...foreach PHP Handbuch Kapitel 16. Kontroll-Strukturen foreach PHP 4 (nicht PHP 3) enthält ein foreach Konstrukt, genau wie Perl und einige andere Sprachen. Diese ermöglicht es, auf einfache Weise ein Array zu durchlaufen. foreach funktioniert nur in Verbindung mit Arrays. Wenn Sie versuchen foreach mit Variablen eines anderen Datentyps oder nicht initialisierten Variablen zu benutzen, gibt PHP einen Fehler aus. Es gibt zwei...
PHP Manual
[ foreach php.net ]

PHP Funktion
bzerror ( phplist Code 33% Relevanz )
Rubrik
Bzip2 Komprimierungsfunktionen
Kurzform
bzerror -- Gibt den bzip2 Fehlercode und eine Fehlerbeschreinung in einem Array zurück.
Vorschau
...bzerror bzerror (PHP 4 >= 4.3.3, PHP 5) bzerror -- Gibt den bzip2 Fehlercode und eine Fehlerbeschreinung in einem Array . Beschreibung array bzerror ( int bz ) Gibt den Fehlercode und die Fehlerbeschreibung eines beliebigen von dem Dateizeiger bz gelieferten bzip2-Fehlers in einem assoziativen Array . Beispiel 1. bzerror() Beispiel &lt;?php $error = ...
PHP Manual
[ bzerror php.net ]

PHP Funktion
current ( phplist Code 33% Relevanz )
Rubrik
Array Funktionen
Kurzform
current -- Liefert das aktuelle Element eines Arrays
Vorschau
...current current (PHP 3, PHP 4, PHP 5) current -- Liefert das aktuelle Element eines Arrays Beschreibung mixed current ( array &array ) Jedes Array hat einen internen Zeiger auf sein "aktuelles" Element, welcher auf das erste in das Array eingefügte Element initialisiert wird. Die Funktion current() liefert den Wert des Array Elements, auf das gerade vom internen ...
PHP Manual
[ current php.net ]

PHP Funktion
extract ( phplist Code 33% Relevanz )
Rubrik
Array Funktionen
Kurzform
extract -- Importiert Variablen eines Arrays in die aktuelle Symboltabelle
Vorschau
...extract extract (PHP 3 >= 3.0.7, PHP 4, PHP 5) extract -- Importiert Variablen eines Arrays in die aktuelle Symboltabelle Beschreibung int extract ( array var_array [, int extract_type [, string prefix]] ) Diese Funktion wird verwendet, um Variablen eines Arrays in die aktuelle Symboltabelle zu importieren. Es behandelt die Schlüssel des assoziativen Arrays var_array als ...
PHP Manual
[ extract php.net ]

PHP Funktion
ftp_raw ( phplist Code 33% Relevanz )
Rubrik
FTP-Funktionen
Kurzform
ftp_raw -- Sendet ein beliebiges Kommando an den FTP-Server
Vorschau
...ftp_raw ftp_raw (PHP 5) ftp_raw -- Sendet ein beliebiges Kommando an den FTP-Server Beschreibung array ftp_raw ( resource ftp_stream, string command ) Sendet ein beliebiges Kommando command an den FTP-Server. Gibt die Antwort des Servers als Array von Strings . Die Antwort des Servers wird weder geparsed, noch stellt ...
PHP Manual
[ ftp_raw php.net ]

PHP Funktion
getmxrr ( phplist Code 33% Relevanz )
Rubrik
Netzwerk Funktionen
Kurzform
getmxrr -- Ermittelt die (DNS) MX-Datensätze passend zu einem angegebenen Internet-Host-Namen
Vorschau
...getmxrr getmxrr (PHP 3, PHP 4, PHP 5) getmxrr -- Ermittelt die (DNS) MX-Datensätze passend zu einem angegebenen Internet-Host-Namen Beschreibung: int getmxrr ( string hostname, array mxhosts [, array weight] ) Sucht im DNS nach MX-Datensätzen die zu hostname passen. Gibt TRUE /wahr , wenn irgendwelche Daten gefunden wurden, ansonsten - oder wenn ein Fehler auftrat - wird FALSE / falsch gegeben. Eine Liste der ...
PHP Manual
[ getmxrr php.net ]

PHP Funktion
natsort ( phplist Code 33% Relevanz )
Rubrik
Array Funktionen
Kurzform
natsort -- Sortiert ein Array in "natürlicher Reihenfolge"
Vorschau
...natsort natsort (PHP 4, PHP 5) natsort -- Sortiert ein Array in "natürlicher Reihenfolge" Beschreibung bool natsort ( array &array ) Diese Funktion implementiert einen Sortieralgorithmus, welcher alphanumerische Zeichenketten reiht, wie es auch ein Mensch tun würde, wobei Sie die Schlüssel-Wert-Zuordnung beibehält. Das wird als "natürliche ...
PHP Manual
[ natsort 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
...print_r() zeigt Informationen über eine Variable in lesbarer Form an. Wenn die Funktion für eine Variable vom Typ string , integer oder float aufgerufen wird, wird der Wert der Variablen angezeigt. Falls print_r() für ein Array aufgerufen wird, werden die Indizes und Werte des Arrays angezeigt. Ähnlich wie bei object s. print_r() , var_dump() und var_export() zeigen mit PHP 5 auch private und geschützte Eigenschaften von Objekten an, im ...
PHP Manual
[ print_r php.net ]

PHP Funktion
scandir ( phplist Code 33% Relevanz )
Rubrik
Verzeichnis-Funktionen
Kurzform
scandir -- Listet Dateien und Verzeichnisse innerhalb eines angegebenen Pfades auf
Vorschau
...scandir scandir (PHP 5) scandir -- Listet Dateien und Verzeichnisse innerhalb eines angegebenen Pfades auf Beschreibung array scandir ( string directory [, int sorting_order [, resource context]] ) Gibt ein Array aus Dateien und Verzeichnissen des aktuellen directory wieder. Parameter Liste directory Das zu untersuchende Verzeichnis. sorting_order Standardmäßig ist die Sortierreihenfolge alphabetisch in aufsteigender ...
PHP Manual
[ scandir php.net ]

PHP Funktion
Audio Streams ( phplist Code 33% Relevanz )
Rubrik
List of Supported Protocols/Wrappers
Kurzform
-----
Vorschau
... as a float, the variable bitrate quality to use. (-1.0 to 1.0) 128000 Write/Append channels The number of audio channels to encode, typically 1 (Mono), or 2 (Stero). May range as high as 16. 2 Write/Append comments An array of string values to encode into the track header. Write/Append Secure Shell 2 Process Interaction Streams...
PHP Manual
[ Audio Streams php.net ]

PHP Funktion
aggregate_info ( phplist Code 32% Relevanz )
Rubrik
Object Aggregation/Composition Functions
Kurzform
aggregate_info -- Returns an associative array of the methods and properties from each class that has been aggregated to the object
Vorschau
...aggregate_info aggregate_info (no version information, might be only in CVS) aggregate_info -- Returns an associative array of the methods and properties from each class that has been aggregated to the object Description array aggregate_info ( object object ) Will return the aggregation information for a particular object as an associative array of arrays of methods and properties. The key for the main array is the name of the aggregated class...
PHP Manual
[ aggregate_info php.net ]

PHP Funktion
db2_bind_param ( phplist Code 32% Relevanz )
Rubrik
IBM DB2 Cloudscape and Apache Derby Functions
Kurzform
db2_bind_param -- Binds a PHP variable to an SQL statement parameter
Vorschau
...statement resource returned by db2_prepare() . This function gives you more control over the parameter type, data type, precision, and scale for the parameter than simply passing the variable as part of the optional input array to db2_execute() . Parameter Liste stmt A prepared statement returned from db2_prepare() . parameter-number Specifies the 1-indexed position of the parameter in the prepared statement. variable-name A string ...
PHP Manual
[ db2_bind_param php.net ]

PHP Funktion
dbplus_rcreate ( phplist Code 32% Relevanz )
Rubrik
DB++ Functions
Kurzform
dbplus_rcreate -- Creates a new DB++ relation
Vorschau
... name . An existing relation by the same name will only be overwritten if the relation is currently not in use and overwrite is set to TRUE. domlist should contain the domain specification for the new relation within an array of domain description strings. ( dbplus_rcreate() will also accept a string with space delimited domain description strings, but it is recommended to use an array). A domain description string consists of a domain name ...
PHP Manual
[ dbplus_rcreate php.net ]

PHP Funktion
error_get_last ( phplist Code 32% Relevanz )
Rubrik
Error Handling and Logging Functions
Kurzform
error_get_last -- Get the last occurred error
Vorschau
...error_get_last error_get_last (no version information, might be only in CVS) error_get_last -- Get the last occurred error Beschreibung array error_get_last ( void ) Rückgabewerte Returns an associative array describing the last error with keys "type", "message", "file" and "line". Returns NULL if there hasn't been an error yet. Beispiele Beispiel 1. An error_get_last() example <?php echo $a ; print_r ( error_get_last...
PHP Manual
[ error_get_last php.net ]

PHP Funktion
stats_variance ( phplist Code 32% Relevanz )
Rubrik
Statistics Functions
Kurzform
stats_variance -- Returns the population variance
Vorschau
...stats_variance stats_variance (PECL) stats_variance -- Returns the population variance Beschreibung float stats_variance ( array a [, bool sample] ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. Parameter Liste a Its description sample Its description Rückgabewerte What the function ...
PHP Manual
[ stats_variance php.net ]

PHP Funktion
substr_replace ( phplist Code 32% Relevanz )
Rubrik
String-Funktionen
Kurzform
substr_replace -- Ersetzt Text innerhalb einer Zeichenkette
Vorschau
...alle Zeichen, die sich innerhalb der durch die Parameter start und (optional) length festgelegten Grenze befinden, mit der in replacement angegebenen Zeichenkette. Der dabei entstandene String wird gegeben. Ist string ein Array, wird auch ein Array gegeben. Ist start positiv, beginnt die Ersetzung ab der im Offset-Parameter start definierten Stelle innerhalb von string . Ist start negativ, wird vom Ende der Zeichenkette string bis zum Wert von...
PHP Manual
[ substr_replace php.net ]

PHP Funktion
Error handling ( phplist Code 32% Relevanz )
Rubrik
PDO Driver How-To
Kurzform
-----
Vorschau
...? value will be used. In addition to the SQLSTATE code and error message, PDO will call the driver-specific fetch_err() routine to obtain supplemental data for the particular error condition. This routine is passed an array into which the driver may place additional information. This array has slot positions assigned to particular types of supplemental info: A native error code. This will frequently be an error code obtained from the ...
PHP Manual
[ Error handling php.net ]

PHP Funktion
Pattern Syntax ( phplist Code 32% Relevanz )
Rubrik
Reguläre Ausdrücke Funktionen (Perl-kompatibel)
Kurzform
-----
Vorschau
... reached, an option setting in one branch does affect subsequent branches, so the above patterns match "SUNDAY" as well as "Saturday". It is possible to name the subpattern with (?P<name>pattern) since PHP 4.3.3. Array with matches will contain the match indexed by the string alongside the match indexed by a number, then. Repetition Repetition is specified by quantifiers, which can follow any of the following items: a single character...
PHP Manual
[ Pattern Syntax php.net ]

PHP Funktion
ldap_add ( phplist Code 31% Relevanz )
Rubrik
LDAP Funktionen
Kurzform
ldap_add -- Einträge einem LDAP Verzeichnis hinzufügen
Vorschau
...ldap_add ldap_add (PHP 3, PHP 4, PHP 5) ldap_add -- Einträge einem LDAP Verzeichnis hinzufügen Beschreibung bool ldap_add ( resource Verbindungs-Kennung, string dn, array eintrag ) Rückgabewert: Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Die ldap_add() Funktion wird benutzt um Einträge einem Verzeichnis hinzuzufügen. Die DN des Eintrags, der hinzugefügt werden soll wird durch dn ...
PHP Manual
[ ldap_add php.net ]

PHP Funktion
ocierror ( phplist Code 31% Relevanz )
Rubrik
Oracle 8 Funktionen
Kurzform
ocierror -- Gibt den letzten Fehler von stmt|conn|global zurück oder FALSE wenn kein Fehler aufgetreten ist.
Vorschau
...ocierror ocierror (PHP 3 >= 3.0.7, PHP 4, PHP 5) ocierror -- Gibt den letzten Fehler von stmt|conn|global oder FALSE , wenn kein Fehler aufgetreten ist. Beschreibung mixed OCIError ( [array stmt|conn] ) OCIError() liefert den letzten Fehler. Ist der optionale Parameter stmt|conn nicht angegeben, wird der zuletzt aufgetretene Fehler geliefert. Ist kein Fehler gefunden, gibt OCIError() FALSE . OCIError() gibt...
PHP Manual
[ ocierror php.net ]

PHP Funktion
rar_list ( phplist Code 31% Relevanz )
Rubrik
Rar Functions
Kurzform
rar_list -- Get entries list from the Rar archive
Vorschau
...rar_list rar_list (no version information, might be only in CVS) rar_list -- Get entries list from the Rar archive Description array rar_list ( resource rar_file ) Get entries list from the Rar archive. Beispiel 1. Rar::() example <?php $rar_file = rar_open ( 'example.rar' ) or die( "Failed to open Rar archive" ); $entries_list = rar_list ( $...
PHP Manual
[ rar_list php.net ]

PHP Funktion
ZipArchive::extractTo ( phplist Code 31% Relevanz )
Rubrik
ZIP Funktionen (Lesezugriff)
Kurzform
ZipArchive::extractTo -- Extract the archive contents
Vorschau
...Extract the complete archive or the given files to the specified destination. Parameter Liste destination Location where to extract the files. entries The entries to extract. It accepts either a single entry name or an array of names. Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Beispiele This example opens a ZIP file archive, reads each file in the archive and prints out its contents. The test2.zip archive used in this ...
PHP Manual
[ ZipArchive::extractTo php.net ]

PHP Funktion
Formulare verarbeiten ( phplist Code 31% Relevanz )
Rubrik
Kleines Tutorial
Kurzform
-----
Vorschau
...: Hallo Joe.Sie sind 22 Jahre alt. Es sollte einfach zu verstehen sein, was hier passiert. Die Variablen $_POST['name'] und $_POST['alter'] werden für Sie automatisch von PHP gesetzt. oben haben wir das autoglobale Array $_SERVER eingeführt, jetzt benutzen wir hier das - ebenfalls autoglobale - Array $_POST , dass alle POST-Daten enthält. Beachten Sie, dass die im Formular verwendete Methode POST ist. Hätten wir GET verwendet, dann wären ...
PHP Manual
[ Formulare verarbeiten php.net ]

PHP Funktion
debug_backtrace ( phplist Code 30% Relevanz )
Rubrik
Error Handling and Logging Functions
Kurzform
debug_backtrace -- Erzeugt Daten zur Ablaufverfolgung
Vorschau
...debug_backtrace debug_backtrace (PHP 4 >= 4.3.0, PHP 5) debug_backtrace -- Erzeugt Daten zur Ablaufverfolgung Beschreibung array debug_backtrace ( void ) debug_backtrace() erzeugt Daten zur Ablaufverfolgung und gibt diese Informationen in einem assoziativen array . Die möglichen gegebenen Arrayelemente sind in der folgenden Tabelle aufgelistet: ...
PHP Manual
[ debug_backtrace php.net ]

PHP Funktion
gopher_parsedir ( phplist Code 30% Relevanz )
Rubrik
Net_Gopher
Kurzform
gopher_parsedir -- Translate a gopher formatted directory entry into an associative array.
Vorschau
...gopher_parsedir gopher_parsedir (PECL) gopher_parsedir -- Translate a gopher formatted directory entry into an associative array. Beschreibung array gopher_parsedir ( string dirent ) gopher_parsedir() parses a gopher formatted directory entry into an associative array. While gopher returns text/plain documents for actual document requests. A request to a directory (...
PHP Manual
[ gopher_parsedir php.net ]

PHP Funktion
pg_query_params ( phplist Code 30% Relevanz )
Rubrik
PostgreSQL Funktionen
Kurzform
pg_query_params -- Sendet ein Kommando zum Server und wartet seine Ausführung ab. Getrennt vom SQL-Kommando können dabei Parameter übergeben werden.
Vorschau
... -- Sendet ein Kommando zum Server und wartet seine Ausführung ab. Getrennt vom SQL-Kommando können dabei Parameter übergeben werden. Beschreibung resource pg_query_params ( resource connection, string query, array params ) resource pg_query_params ( string query, array params ) Sendet ein Kommando zum Server und wartet seine Ausführung ab. Getrennt vom SQL-Kommando können dabei Parameter übergeben werden. pg_query_params() ist ä...
PHP Manual
[ pg_query_params php.net ]

PHP Funktion
stats_stat_correlation ( phplist Code 30% Relevanz )
Rubrik
Statistics Functions
Kurzform
stats_stat_correlation -- Not documented
Vorschau
...stats_stat_correlation stats_stat_correlation (PECL) stats_stat_correlation -- Not documented Beschreibung float stats_stat_correlation ( array arr1, array arr2 ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. Parameter Liste arr1 Its description arr2 Its description Rückgabewerte What the function returns, ...
PHP Manual
[ stats_stat_correlation php.net ]

PHP Funktion
Upload mehrerer Dateien ( phplist Code 29% Relevanz )
Rubrik
Steuerung von Dateiuploads
Kurzform
-----
Vorschau
... mehrerer Dateien Mehrere Dateien können hochgeladen werden, indem Sie verschiedene Namen name für input verwenden. Es ist ebenfalls möglich, mehrere Dateien simultan hochzuladen, und die Informationen automatisch in Arrays zu erhalten. Um dies zu tun, verwenden Sie in dem HTML Formular die gleiche Array-Sende-Syntax wie bei Auswahllisten mit Mehrfachauswahl und Checkboxen: Anmerkung: Die Unterstützung für den Upload von mehreren Dateien ...
PHP Manual
[ Upload mehrerer Dateien php.net ]

PHP Funktion
dbase_get_record ( phplist Code 29% Relevanz )
Rubrik
dBase Funktionen
Kurzform
dbase_get_record -- Liest einen Datensatz aus einer dBase-Datenbank
Vorschau
...dbase_get_record dbase_get_record (PHP 3, PHP 4, PHP 5) dbase_get_record -- Liest einen Datensatz aus einer dBase-Datenbank Beschreibung: array dbase_get_record ( int dbase_identifier, int record ) Gibt die Daten von record in einem Array . Das Array hat einen bei 0 beginnenden Index und enthält einen zusätzlichen Bereich der mit 'deleted' bezeichnet wird. ...
PHP Manual
[ dbase_get_record php.net ]

PHP Funktion
dbx_query ( phplist Code 29% Relevanz )
Rubrik
dbx Funktionen
Kurzform
dbx_query -- Sendet eine Abfrage und holt alle Ergebnisse (falls vorhanden)
Vorschau
... die Einstellungen dbx.colnames_case in der php.ini auf. DBX_RESULT_INDEX Dieser Flag ist immer gesetzt, d.h. dass gegebene Objekt hat eine Eigenschaft data , welche aus einem zweidimensionalen, numerisch indizierten Array besteht. Zum Beispiel steht in data[2][3] die 2 für die Reihen- (bzw. Datensatz-) Nummer, und 3 steht für die Spalten- (bzw. Feld- Nummer). Die erste Reihe und Spalte haben den Index 0. Ist DBX_RESULT_ASSOC ebenfalls ...
PHP Manual
[ dbx_query php.net ]

PHP Funktion
get_declared_interfaces ( phplist Code 29% Relevanz )
Rubrik
Klassen- und Objekt-Funktionen
Kurzform
get_declared_interfaces -- Returns an array of all declared interfaces
Vorschau
...get_declared_interfaces get_declared_interfaces (PHP 5) get_declared_interfaces -- Returns an array of all declared interfaces Description array get_declared_interfaces ( void ) This function returns an array of the names of the declared interfaces in the current script. Beispiel 1. get_declared_interfaces() example <?php print_r ( get_declared_interfaces ()); ?> Das oben gezeigte Beispiel erzeugteine ähnliche Ausgabe ...
PHP Manual
[ get_declared_interfaces php.net ]

PHP Funktion
getrusage ( phplist Code 29% Relevanz )
Rubrik
PHP Optionen & Informationen
Kurzform
getrusage -- Zeigt den aktuellen Ressourcenverbrauch an
Vorschau
...getrusage getrusage (PHP 3 >= 3.0.7, PHP 4, PHP 5) getrusage -- Zeigt den aktuellen Ressourcenverbrauch an Beschreibung array getrusage ( [int who] ) Dies ist eine Schnittstlle zu getrusage(2). Stellt ein assoziatives Array mit den Daten zur Verfügung, die der Systemaufruf ausgibt. Wenn who 1 ist, wird getusage mit RUSAGE_CHILDREN aufgerufen. ...
PHP Manual
[ getrusage php.net ]

PHP Funktion
ibase_param_info ( phplist Code 29% Relevanz )
Rubrik
InterBase-Funktionen
Kurzform
ibase_param_info -- Return information about a parameter in a prepared query
Vorschau
...ibase_param_info ibase_param_info (PHP 5) ibase_param_info -- Return information about a parameter in a prepared query Description array ibase_param_info ( resource query, int param_number ) Returns an array with information about a parameter after a query has been prepared. The array is in the form of name, alias, relation, length, type. See also ibase_field_info() and ibase_num_params() . ibase_num_params ...
PHP Manual
[ ibase_param_info php.net ]

PHP Funktion
ifx_query ( phplist Code 29% Relevanz )
Rubrik
Informix Funktionen
Kurzform
ifx_query -- Schickt eine Informix Abfrage an den Server
Vorschau
...ifx_query ifx_query (PHP 3 >= 3.0.3, PHP 4, PHP 5) ifx_query -- Schickt eine Informix Abfrage an den Server Beschreibung int ifx_query ( string query, int link_identifier [, int cursor_type [, mixed blobidarray]] ) Gibt bei Erfolg einen positiven Integerwert als Ergebniskennung oder FALSE , falls ein Fehler auftrat. Die Ergebniskennung, "result-id", wird von anderen Funktionen benutzt. Die Zahl der betroffenen Zeilen wird für ...
PHP Manual
[ ifx_query php.net ]

PHP Funktion
imap_sort ( phplist Code 29% Relevanz )
Rubrik
IMAP POP3 und NNTP Funktionen
Kurzform
imap_sort -- Sortiert Nachrichten eines Postfachs
Vorschau
...imap_sort imap_sort (PHP 3 >= 3.0.3, PHP 4, PHP 5) imap_sort -- Sortiert Nachrichten eines Postfachs Beschreibung array imap_sort ( int stream, int criteria, int reverse, int options ) Diese Funktion liefert die Indizes der Nachrichten eines Postfachs als sortiertes Array . Als Sortier-Kriterium kann im Parameter criteria genau einer der ...
PHP Manual
[ imap_sort php.net ]

PHP Funktion
iptcparse ( phplist Code 29% Relevanz )
Rubrik
Grafik-Funktionen
Kurzform
iptcparse -- Parse a binary IPTC http://www.iptc.org/ block into single tags.
Vorschau
...iptcparse iptcparse (PHP 3 >= 3.0.6, PHP 4, PHP 5) iptcparse -- Parse a binary IPTC http://www.iptc.org/ block into single tags. Description array iptcparse ( string iptcblock ) This function parses a binary IPTC block into its single tags. It returns an array using the tagmarker as an index and the value as the value. It returns FALSE on error or if no IPTC data ...
PHP Manual
[ iptcparse php.net ]

PHP Funktion
is_scalar ( phplist Code 29% Relevanz )
Rubrik
Funktionen zur Behandlung von Variablen
Kurzform
is_scalar -- Finds whether a variable is a scalar
Vorschau
... -- Finds whether a variable is a scalar Beschreibung bool is_scalar ( mixed var ) Finds whether the given variable is a scalar. Scalar variables are those containing an integer , float , string or boolean . Types array , object and resource are not scalar. Anmerkung: is_scalar() does not consider resource type values to be scalar as resources are abstract datatypes which are currently based on integers. This implementation detail should...
PHP Manual
[ is_scalar php.net ]

PHP Funktion
ldap_mod_replace ( phplist Code 29% Relevanz )
Rubrik
LDAP Funktionen
Kurzform
ldap_mod_replace -- Ersetzen von Merkmalswerten mit neuen Merkmalswerten
Vorschau
...ldap_mod_replace ldap_mod_replace (PHP 3 >= 3.0.8, PHP 4, PHP 5) ldap_mod_replace -- Ersetzen von Merkmalswerten mit neuen Merkmalswerten Beschreibung bool ldap_mod_replace ( resource Verbindungs-Kennung, string dn, array eintrag ) Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Diese Funktion ersetzt ein oder mehrere Merkmale vom angegebenen dn . Die Änderung wird auf der Merkmalsebene durchgeführt im Gegensatz zur Objektebene. Änderungen ...
PHP Manual
[ ldap_mod_replace php.net ]

PHP Funktion
oci_error ( phplist Code 29% Relevanz )
Rubrik
Oracle 8 Funktionen
Kurzform
oci_error -- Returns the last error found
Vorschau
...oci_error oci_error (PHP 5) oci_error -- Returns the last error found Description array oci_error ( [resource source] ) For most errors, the parameter is the most appropriate resource handle. For connection errors with oci_connect() , oci_new_connect() or oci_pconnect() , do not pass a parameter. If no ...
PHP Manual
[ oci_error php.net ]

PHP Funktion
preg_grep ( phplist Code 29% Relevanz )
Rubrik
Reguläre Ausdrücke Funktionen (Perl-kompatibel)
Kurzform
preg_grep -- Liefert die mit einem Suchmuster übereinstimmenden Array-Elemente
Vorschau
...preg_grep preg_grep (PHP 4, PHP 5) preg_grep -- Liefert die mit einem Suchmuster übereinstimmenden Array-Elemente Beschreibung array preg_grep ( string Suchmuster, array Eingabe [, int Flags] ) preg_grep() gibt ein Array , das aus den Elementen des Eingabe -Arrays besteht, die mit dem angegebenen Suchmuster übereinstimmen. Flags kann das folgende Flag sein: PREG_GREP_INVERT Falls das Flag übergeben wird, gibt preg_grep() die Elemente ...
PHP Manual
[ preg_grep php.net ]

PHP Funktion
px_update_record ( phplist Code 29% Relevanz )
Rubrik
Paradox File Access
Kurzform
px_update_record -- Updates record in paradox database
Vorschau
...px_update_record px_update_record (PECL) px_update_record -- Updates record in paradox database Beschreibung bool px_update_record ( resource pxdoc, array data, int num ) Updates an exiting record in the database. The record starts at 0. The record data is passed as an array of field values. The elements in the array must correspond to the fields in the database. If the ...
PHP Manual
[ px_update_record php.net ]

PHP Funktion
serialize ( phplist Code 29% Relevanz )
Rubrik
Funktionen zur Behandlung von Variablen
Kurzform
serialize -- Erzeugt eine speicherbare Repräsentation eines Wertes
Vorschau
... Struktur verlieren. Um eine serialisierte Zeichenkette wieder als PHP-Wert verfügbar zu machen, verwenden Sie unserialize() . serialize() kann mit allen Typen umgehen, ausgenommen mit dem resource -Typ. Sie können sogar Arrays serialisieren, die Referenzen auf sich selbst enthalten. Zirkelbezüge innerhalb des Arrays/Objekts, das Sie serialisieren, werden ebenfalls gespeichert. Alle anderen Referenzen gehen verloren. Wenn Objekte serialisiert ...
PHP Manual
[ serialize php.net ]

PHP Funktion
stats_covariance ( phplist Code 29% Relevanz )
Rubrik
Statistics Functions
Kurzform
stats_covariance -- Computes the covariance of two data sets
Vorschau
...stats_covariance stats_covariance (PECL) stats_covariance -- Computes the covariance of two data sets Beschreibung float stats_covariance ( array a, array b ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. Parameter Liste a Its description b Its description Rückgabewerte What the function returns, first on ...
PHP Manual
[ stats_covariance php.net ]

PHP Funktion
add_index_binary ( phplist Code 29% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
int add_index_binary ( zval* arg ulong idx char* str int duplicate magic TSRMLS_DC ) ...
Vorschau
...add_index_binary add_index_binary add_index_binary -- Add binary_string value to assoc array using numeric index Beschreibung #include <zend_API.h> int add_index_binary ( zval* arg, ulong idx, char* str, int duplicate, magic TSRMLS_DC ) ... Parameter Liste arg ... idx ... str ... duplicate ... ...
PHP Manual
[ add_index_binary php.net ]

PHP Funktion
aggregate_methods_by_list ( phplist Code 27% Relevanz )
Rubrik
Object Aggregation/Composition Functions
Kurzform
aggregate_methods_by_list -- Selective dynamic class methods aggregation to an object
Vorschau
... aggregate_methods_by_list (PHP 4 >= 4.2.0) aggregate_methods_by_list -- Selective dynamic class methods aggregation to an object Description void aggregate_methods_by_list ( object object, string class_name, array methods_list [, bool exclude] ) Aggregates methods from a class to an existing object using a list of method names. The optional parameter exclude is used to decide whether the list contains the names of methods to ...
PHP Manual
[ aggregate_methods_by_list php.net ]

PHP Funktion
date_parse ( phplist Code 27% Relevanz )
Rubrik
Datums- und Zeit-Funktionen
Kurzform
date_parse -- Returns associative array with detailed info about given date
Vorschau
...date_parse date_parse (no version information, might be only in CVS) date_parse -- Returns associative array with detailed info about given date Beschreibung array date_parse ( string date ) Parameter Liste date Date in format accepted by strtotime() . Rückgabewerte Returns array on success or FALSE on failure. Beispiele Beispiel 1. A date_parse() example <?php print_r ( ...
PHP Manual
[ date_parse php.net ]

PHP Funktion
filter_var ( phplist Code 27% Relevanz )
Rubrik
Filter Functions
Kurzform
filter_var -- Filters a variable with a specified filter
Vorschau
... information, might be only in CVS) filter_var -- Filters a variable with a specified filter Beschreibung mixed filter_var ( mixed variable [, int filter [, mixed options]] ) Parameter Liste variable Value to filter, arrays are filtered recursively. filter ID of a filter to use. Defaults to FILTER_SANITIZE_STRING . options Associative array of options or bitwise disjunction of flags. If filter accepts options, flags can be provided in "...
PHP Manual
[ filter_var php.net ]

PHP Funktion
hash_algos ( phplist Code 27% Relevanz )
Rubrik
hash Functions
Kurzform
hash_algos -- Return a list of registered hashing algorithms
Vorschau
...hash_algos hash_algos (no version information, might be only in CVS) hash_algos -- Return a list of registered hashing algorithms Beschreibung array hash_algos ( void ) Rückgabewerte Returns a numerically indexed array containing the list of supported hashing algorithms. Beispiele Beispiel 1. hash_algos() example As of PHP 5.1.2, hash_algos() will return the following list of algorithm names. <?php print_r ( hash_algos ()); ?> ...
PHP Manual
[ hash_algos php.net ]

PHP Funktion
ldap_parse_result ( phplist Code 27% Relevanz )
Rubrik
LDAP Funktionen
Kurzform
ldap_parse_result -- Gewinnt Informationen aus einem Ergebnis
Vorschau
... (PHP 4 >= 4.0.5, PHP 5) ldap_parse_result -- Gewinnt Informationen aus einem Ergebnis Beschreibung boolean ldap_parse_result ( resource link, resource result, int errcode, string matcheddn, string errmsg, array referrals ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. ldap_parse_reference ldap_read...
PHP Manual
[ ldap_parse_result php.net ]

PHP Funktion
maxdb_server_init ( phplist Code 27% Relevanz )
Rubrik
MaxDB PHP Extension
Kurzform
maxdb_server_init -- Initialize embedded server
Vorschau
...maxdb_server_init maxdb_server_init (PECL) maxdb_server_init -- Initialize embedded server Description bool maxdb_server_init ( [array server [, array groups]] ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. maxdb_server_end maxdb_set_opt...
PHP Manual
[ maxdb_server_init php.net ]

PHP Funktion
preg_match ( phplist Code 27% Relevanz )
Rubrik
Reguläre Ausdrücke Funktionen (Perl-kompatibel)
Kurzform
preg_match -- Führt eine Suche mit einem regulären Ausdruck durch
Vorschau
...preg_match preg_match (PHP 3 >= 3.0.9, PHP 4, PHP 5) preg_match -- Führt eine Suche mit einem regulären Ausdruck durch Beschreibung int preg_match ( string Suchmuster, string Zeichenkette [, array &Treffer [, int Flags [, int Versatz]]] ) Durchsucht Zeichenkette nach Übereinstimmungen mit dem in Suchmuster angegebenen regulären Ausdruck. Falls der Parameter Treffer angegeben wurde, wird er mit den ...
PHP Manual
[ preg_match php.net ]

PHP Funktion
set_error_handler ( phplist Code 27% Relevanz )
Rubrik
Error Handling and Logging Functions
Kurzform
set_error_handler -- Bestimmt eine benutzerdefinierte Funktion zur Fehlerbehandlung.
Vorschau
... als String. Ab PHP 4.0.2 sind zudem drei optionale Parameter verfügbar: der Name der Datei, in der der Fehler auftrat, die Nummer der Zeile, in der der Fehler auftrat und der Kontext, in welchem der Fehler auftrat (ein Array, das auf den Punkt in der aktiven Symboltabelle verweist, wo der Fehler auftrat). Anmerkung: Anstelle eines Funktionsnamens kann auch ein Array, das eine Referenz auf ein Objekt und einen Methodennamen enthält, übergeben ...
PHP Manual
[ set_error_handler php.net ]

PHP Funktion
tidy_parse_string ( phplist Code 27% Relevanz )
Rubrik
Tidy Functions
Kurzform
tidy_parse_string -- Parse a document stored in a string
Vorschau
... encoding]] ) Object oriented style: bool tidy->parseString ( string input [, mixed config [, string encoding]] ) tidy_parse_string() parses a document stored in a string. Den config Parameterkönnen Sie entweder als Array oder String übergeben. Bei der Übergabe alsString wird dieser als Name der Konfigurationsdatei interpretiert, bei derÜbergabe als Array als die Optionen selbst. Für möegliche Optionen und derenBedeutung sollten Sie sich ...
PHP Manual
[ tidy_parse_string php.net ]

PHP Funktion
xattr_list ( phplist Code 27% Relevanz )
Rubrik
xattr Functions
Kurzform
xattr_list -- Get a list of extended attributes
Vorschau
...xattr_list xattr_list (PECL) xattr_list -- Get a list of extended attributes Beschreibung array xattr_list ( string filename [, int flags] ) This functions gets a list of names of extended attributes of a file. Extended attributes have two different namespaces: user and root namespace. User namespace is available ...
PHP Manual
[ xattr_list php.net ]

PHP Funktion
Überladung ( phplist Code 27% Relevanz )
Rubrik
Klassen und Objekte (PHP 5)
Kurzform
-----
Vorschau
...() Methode spezifiziert den Wert, den das Objekt der Variable $name zuweisen soll. Beispiel 19-20. Beispiel für Überladung mit __get(), __set(), __isset() und __unset() <?php class Setter { public $n ; private $x = array( "a" => 1 , "b" => 2 , "c" => 3 ); public function __get ( $nm ) { echo "Liefere [ $nm ]\n " ; if (isset( $this -> x [ $nm ])) { $r = $this -> x [ $nm ]; echo "Gebe : $r \n " ; return $r ; } else { echo "...
PHP Manual
[ Überladung php.net ]

PHP Funktion
add_index_binaryl ( phplist Code 27% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
int add_index_binaryl ( zval* arg ulong idx char* str uint length int duplicate magic TSRMLS_DC ) ...
Vorschau
...add_index_binaryl add_index_binaryl add_index_binaryl -- Add binary safe binary_string value to assoc array using numeric index Beschreibung #include <zend_API.h> int add_index_binaryl ( zval* arg, ulong idx, char* str, uint length, int duplicate, magic TSRMLS_DC ) ... Parameter Liste arg ... idx ... str ... length...
PHP Manual
[ add_index_binaryl php.net ]

PHP Funktion
http_parse_headers ( phplist Code 26% Relevanz )
Rubrik
HTTP Funktionen
Kurzform
http_parse_headers -- Parse HTTP headers
Vorschau
...http_parse_headers http_parse_headers (PECL) http_parse_headers -- Parse HTTP headers Beschreibung array http_parse_headers ( string header ) Parses HTTP headers into an associative array. Parameter Liste header String containing HTTP headers Rückgabewerte Returns an array on success, or FALSE on failure. Beispiele Beispiel 1. Using http_parse_headers() <?php $headers = "content-type: text/html; ...
PHP Manual
[ http_parse_headers php.net ]

PHP Funktion
http_parse_message ( phplist Code 26% Relevanz )
Rubrik
HTTP Funktionen
Kurzform
http_parse_message -- Parse the HTTP message
Vorschau
...ckgabewerte A hierarchical object structure of the parsed messages. Beispiele Beispiel 1. Using http_parse_message() <?php define ( 'URL' , 'http://www.example.com/' ); print_r ( http_parse_message ( http_get ( URL , array( 'redirect' => 3 )))); ?> Das oben gezeigte Beispiel erzeugteine ähnliche Ausgabe wie: stdClass object( [type] => 2 [httpVersion] => 1.1 [responseCode] => 200 [headers] => Array ( [Content-Length...
PHP Manual
[ http_parse_message php.net ]

PHP Funktion
ps_string_geometry ( phplist Code 26% Relevanz )
Rubrik
PostScript document creation
Kurzform
ps_string_geometry -- Gets geometry of a string
Vorschau
...ps_string_geometry ps_string_geometry (PECL) ps_string_geometry -- Gets geometry of a string Beschreibung array ps_string_geometry ( resource psdoc, string text [, int fontid [, float size]] ) This function is similar to ps_stringwidth() but returns an array of dimensions containing the width, ascender, and descender of the text. ...
PHP Manual
[ ps_string_geometry php.net ]

PHP Funktion
add_index_resource ( phplist Code 26% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
int add_index_resource ( zval* arg ulong idx int r ) ...
Vorschau
...add_index_resource add_index_resource add_index_resource -- Add resource value to assoc array using numeric index Beschreibung #include <zend_API.h> int add_index_resource ( zval* arg, ulong idx, int r ) ... Parameter Liste arg ... idx ... r ... Rückgabewerte ... add_index_null add_index_string...
PHP Manual
[ add_index_resource php.net ]

PHP Funktion
Creating Variables ( phplist Code 26% Relevanz )
Rubrik
Zend API: Hacking the Core of PHP
Kurzform
-----
Vorschau
...->value.lval = 1; The corresponding macros for this type are ZVAL_BOOL (allowing specification of the value) as well as ZVAL_TRUE and ZVAL_FALSE (which explicitly set the value to TRUE and FALSE , respectively). Arrays Arrays are stored using Zend's internal hash tables, which can be accessed using the zend_hash_*() API. For every array that you want to create, you need a new hash table handle, which will be stored in the ht member of...
PHP Manual
[ Creating Variables php.net ]

PHP Funktion
cal_from_jd ( phplist Code 25% Relevanz )
Rubrik
Kalender-Funktionen
Kurzform
cal_from_jd -- Converts from Julian Day Count to a supported calendar
Vorschau
...cal_from_jd cal_from_jd (PHP 4 >= 4.1.0, PHP 5) cal_from_jd -- Converts from Julian Day Count to a supported calendar Description array cal_from_jd ( int jd, int calendar ) cal_from_jd() converts the Julian day given in jd into a date of the specified calendar . Supported calendar values are CAL_GREGORIAN , CAL_JULIAN , CAL_JEWISH and CAL_FRENCH . ...
PHP Manual
[ cal_from_jd php.net ]

PHP Funktion
count_chars ( phplist Code 25% Relevanz )
Rubrik
String-Funktionen
Kurzform
count_chars -- Gibt Informationen über die in einem String enthaltenen Zeichen zurück
Vorschau
... jedes einzelnen Byte-Wertes (0..255) in string und gibt sie auf verschiedene Arten . Der optionale Parameter mode ist auf 0 voreingestellt. Abhängig von mode gibt count_chars() eine der folgenden Möglichkeiten : 0 - ein Array mit den Byte-Werten als Schlüssel und deren jeweiliger Häufigkeit als Wert. 1 - wie 0, allerdings werden nur Byte-Werte ausgegeben, die mindestens einmal vorkommen. 2 - wie 0, allerdings werden nur Byte-Werte, die nicht...
PHP Manual
[ count_chars php.net ]

PHP Funktion
db2_prepare ( phplist Code 25% Relevanz )
Rubrik
IBM DB2 Cloudscape and Apache Derby Functions
Kurzform
db2_prepare -- Prepares an SQL statement to be executed
Vorschau
...db2_prepare db2_prepare (PECL) db2_prepare -- Prepares an SQL statement to be executed Beschreibung resource db2_prepare ( resource connection, string statement [, array options] ) db2_prepare() creates a prepared SQL statement which can include 0 or more parameter markers ( ? characters) representing parameters for input, output, or input/output. You can pass parameters to the prepared ...
PHP Manual
[ db2_prepare php.net ]

PHP Funktion
dbase_get_record_with_names ( phplist Code 25% Relevanz )
Rubrik
dBase Funktionen
Kurzform
dbase_get_record_with_names -- Gibt einen Datensatz einer dBase-Datenbank als assoziatives Array zurück
Vorschau
...dbase_get_record_with_names dbase_get_record_with_names (PHP 3 >= 3.0.4, PHP 4, PHP 5) dbase_get_record_with_names -- Gibt einen Datensatz einer dBase-Datenbank als assoziatives Array Beschreibung: array dbase_get_record_with_names ( int dbase_identifier, int record ) Gibt die Daten von record in einem assoziativen Array . Das Array enthält auch einen assoziativen Bereich, der 'deleted' heisst und auf 1 steht, wenn der ...
PHP Manual
[ dbase_get_record_with_names php.net ]

PHP Funktion
dbplus_curr ( phplist Code 25% Relevanz )
Rubrik
DB++ Functions
Kurzform
dbplus_curr -- Get current tuple from relation
Vorschau
...dbplus_curr dbplus_curr (4.1.0 - 4.2.3 only, PECL) dbplus_curr -- Get current tuple from relation Description int dbplus_curr ( resource relation, array &tuple ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkündigung ändern. Seien Sie gewarnt und ...
PHP Manual
[ dbplus_curr php.net ]

PHP Funktion
dbx_compare ( phplist Code 25% Relevanz )
Rubrik
dbx Funktionen
Kurzform
dbx_compare -- Vergleicht zwei Reihen für Sortierzwecke
Vorschau
...dbx_compare dbx_compare (PHP 4 >= 4.1.0, PHP 5 <= 5.0.4) dbx_compare -- Vergleicht zwei Reihen für Sortierzwecke Beschreibung int dbx_compare ( array row_a, array row_b, string column_key [, int flags] ) dbx_compare() gibt 0 , wenn row_a[$column_key] gleich row_b[$column_key] ist. Ist der erste Wert größer oder kleiner als der zweite, wird 1 bzw. -1 gegeben (oder umgekehrt, wenn ...
PHP Manual
[ dbx_compare php.net ]

PHP Funktion
ftp_rawlist ( phplist Code 25% Relevanz )
Rubrik
FTP-Funktionen
Kurzform
ftp_rawlist -- Gibt eine detaillierte Liste der Dateien in einem angegebenen Verzeichnis zurück
Vorschau
...Gibt eine detaillierte Liste der Dateien in einem angegebenen Verzeichnis Beschreibung: int ftp_rawlist ( int ftp_stream, string Verzeichnis ) ftp_rawlist() führt den FTP LIST-Befehl aus und gibt das Ergebnis in einem Array . Jedes Array-Element entspricht einer Textzeile. Die Ausgabe wird von PHP in keinster Weise ausgewertet. Das System-Art-Merkmal, welches per ftp_systype() -Funktion gegeben wird, kann benutzt werden um die ...
PHP Manual
[ ftp_rawlist php.net ]

PHP Funktion
get_headers ( phplist Code 25% Relevanz )
Rubrik
URL Funktionen
Kurzform
get_headers -- Ruft alle Header ab die der Server als Antwort auf einen HTTP-Request versendet
Vorschau
...get_headers get_headers (PHP 5) get_headers -- Ruft alle Header ab, die der Server als Antwort auf einen HTTP-Request versendet Beschreibung array get_headers ( string url [, int format] ) get_headers() gibt ein Array , das die vom Server in seiner Antwort (Response) auf eine HTTP-Anfrage gesendeten Header enthält. Gibt im Fehlerfall FALSE , und ein Error des Levels E_WARNING wird ausgegeben. Hat der optionale Parameter format den ...
PHP Manual
[ get_headers php.net ]

PHP Funktion
gmp_sqrtrem ( phplist Code 25% Relevanz )
Rubrik
GMP Functions
Kurzform
gmp_sqrtrem -- Square root with remainder
Vorschau
...gmp_sqrtrem gmp_sqrtrem (PHP 4 >= 4.0.4, PHP 5) gmp_sqrtrem -- Square root with remainder Description array gmp_sqrtrem ( resource a ) Returns array where first element is the integer square root of a (see also gmp_sqrt() ), and the second is the remainder (i.e., the difference between a and the first element squared). Beispiel 1. gmp_sqrtrem() example <?php list...
PHP Manual
[ gmp_sqrtrem php.net ]

PHP Funktion
hw_api->replace ( phplist Code 25% Relevanz )
Rubrik
Hyperwave API Functions
Kurzform
hw_api->replace -- Replaces an object
Vorschau
..."HREF="function.hwapi-setcommittedversion.html"> hw_api->replace (no version information, might be only in CVS) hw_api->replace -- Replaces an object Description hw_api_object hw_api->replace ( array parameter ) Replaces the attributes and the content of an object The parameter array contains the required elements 'objectIdentifier' and 'object' and the optional parameters 'content', 'parameters', 'mode' and '...
PHP Manual
[ hw_api->replace php.net ]

PHP Funktion
imagecolorsforindex ( phplist Code 25% Relevanz )
Rubrik
Grafik-Funktionen
Kurzform
imagecolorsforindex -- Ermittelt die Farbwerte einer angegebenen Farb-Palette
Vorschau
...imagecolorsforindex imagecolorsforindex (PHP 3, PHP 4, PHP 5) imagecolorsforindex -- Ermittelt die Farbwerte einer angegebenen Farb-Palette Beschreibung: array imagecolorsforindex ( resource im, int index ) Gibt ein assoziatives Array mit Rot-, Grün- und Blau-Werten , die die Werte des Farb-Paletten-Index von im darstellen. Siehe auch imagecolorat() und imagecolorexact() . ...
PHP Manual
[ imagecolorsforindex php.net ]

PHP Funktion
imap_alerts ( phplist Code 25% Relevanz )
Rubrik
IMAP POP3 und NNTP Funktionen
Kurzform
imap_alerts -- Diese Funktion liefert alle alert-Meldungen zurück die während der Ausführung dieses Requests bzw. seit dem letzten Reset des alert-Stacks aufgetreten sind.
Vorschau
... (PHP 3 >= 3.0.12, PHP 4, PHP 5) imap_alerts -- Diese Funktion liefert alle alert-Meldungen , die während der Ausführung dieses Requests bzw. seit dem letzten Reset des alert-Stacks aufgetreten sind. Beschreibung array imap_alerts ( void ) Diese Funktion liefert in Form eines String-Arrays alle IMAP alert-Medlungen, die seit Beginn dieses Requests bzw. dem letzten Aufruf der Funktion aufgetreten sind. Durch den Aufruf der Funktion wird...
PHP Manual
[ imap_alerts php.net ]

PHP Funktion
imap_fetchstructure ( phplist Code 25% Relevanz )
Rubrik
IMAP POP3 und NNTP Funktionen
Kurzform
imap_fetchstructure -- Liefert die Struktur der angegebenen Nachricht
Vorschau
... [, int flags] ) Diese Funktion liefert die gesamten Strukturinformationen zu einer gegebenen Nachricht. Das gegebene Objekt enthält den Umschlag, die internen Daten, Größe und Flags der Nachricht sowie ein (rekursives) Array von ähnlichen Objekten für jeden enthaltenen MIME-Teil der Nachricht. Enthält der optionale Parameter flags den Wert FT_UID , so wird msg_number als UID anstelle eines Index interpretiert. Das gegebene Objekt verfügt ü...
PHP Manual
[ imap_fetchstructure php.net ]

PHP Funktion
imap_getacl ( phplist Code 25% Relevanz )
Rubrik
IMAP POP3 und NNTP Funktionen
Kurzform
imap_getacl -- Gets the ACL for a given mailbox
Vorschau
...imap_getacl imap_getacl (PHP 5) imap_getacl -- Gets the ACL for a given mailbox Description array imap_getacl ( resource stream_id, string mailbox ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. This function is currently only available to users of the c-...
PHP Manual
[ imap_getacl php.net ]

PHP Funktion
imap_header ( phplist Code 25% Relevanz )
Rubrik
IMAP POP3 und NNTP Funktionen
Kurzform
imap_header -- Liefert den Kopf einer Nachricht
Vorschau
... die etwas seltsame Recent/Unseen-Zuordnung. Eine Nachricht wurde noch nicht gelesen, wenn folgende Bedingung erfüllt ist: Unseen == 'U' || Recent == 'N' toaddress (Inhalt der to: Zeile, bis zu 1024 Zeichen) to[] (ein Array aus Objekten aus der to: Zeile, jeweils mit:) personal adl mailbox host fromaddress (Inhalt der from: Zeile, up to 1024 characters) from[] (Inhalt der From Zeile, bestehend aus:) personal adl mailbox host ccaddress (...
PHP Manual
[ imap_header php.net ]

PHP Funktion
imap_search ( phplist Code 25% Relevanz )
Rubrik
IMAP POP3 und NNTP Funktionen
Kurzform
imap_search -- Sucht Nachrichten die den übergebenen Suchkriterien entsprechen
Vorschau
...imap_search imap_search (PHP 3 >= 3.0.12, PHP 4, PHP 5) imap_search -- Sucht Nachrichten, die den übergebenen Suchkriterien entsprechen Beschreibung array imap_search ( int imap_stream, string criteria, int flags ) Diese Funktion durchsucht die Nachrichten des aktuellen Postfachs und liefert ein Array mit den Nummern der Nachrichten, die mit den angegebenen Kriterien ü...
PHP Manual
[ imap_search php.net ]

PHP Funktion
is_callable ( phplist Code 25% Relevanz )
Rubrik
Funktionen zur Behandlung von Variablen
Kurzform
is_callable -- Verify that the contents of a variable can be called as a function
Vorschau
...mixed var [, bool syntax_only [, string &callable_name]] ) Verify that the contents of a variable can be called as a function. This can check that a simple variable contains the name of a valid function, or that an array contains a properly encoded object and function name. The var parameter can be either the name of a function stored in a string variable, or an object and the name of a method within the object, like this: array($...
PHP Manual
[ is_callable php.net ]

PHP Funktion
kadm5_get_principal ( phplist Code 25% Relevanz )
Rubrik
KADM5
Kurzform
kadm5_get_principal -- Gets the principal's entries from the Kerberos database
Vorschau
...kadm5_get_principal kadm5_get_principal (PECL) kadm5_get_principal -- Gets the principal's entries from the Kerberos database Beschreibung array kadm5_get_principal ( resource handle, string principal ) kadm5_get_principal() returns an associative array containing the following keys: KADM5_PRINCIPAL, KADM5_PRINC_EXPIRE_TIME, KADM5_PW_EXPIRATION, KADM5_ATTRIBUTES...
PHP Manual
[ kadm5_get_principal php.net ]

PHP Funktion
key ( phplist Code 25% Relevanz )
Rubrik
Array Funktionen
Kurzform
key -- Liefert einen Schlüssel eines assoziativen Arrays
Vorschau
...key key (PHP 3, PHP 4, PHP 5) key -- Liefert einen Schlüssel eines assoziativen Arrays Beschreibung mixed key ( array &array ) key() liefert das Index Element der aktuellen Position im Array. Beispiel 1. key() Beispiel <?php $array = array( 'Frucht1' => 'Apfel' , 'Frucht2' => 'Orange' , 'Frucht3' => 'Grape' , 'Frucht4' => 'Apfel' , 'Frucht5' => 'Apfel' ); // Diese Schleife gibt alle Schlü...
PHP Manual
[ key php.net ]

PHP Funktion
ldap_modify ( phplist Code 25% Relevanz )
Rubrik
LDAP Funktionen
Kurzform
ldap_modify -- Verändern eines LDAP-Eintrags
Vorschau
...ldap_modify ldap_modify (PHP 3, PHP 4, PHP 5) ldap_modify -- Verändern eines LDAP-Eintrags Beschreibung bool ldap_modify ( resource Verbindungs-Kennung, string dn, array eintrag ) Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Die ldap_modify() Funktion wird verwendet, um bestehende Einträge in einem LDAP-Verzeichnis zu ändern. Die Struktur des Eintrags ist die gleiche wie bei ldap_add...
PHP Manual
[ ldap_modify php.net ]

PHP Funktion
ldap_search ( phplist Code 25% Relevanz )
Rubrik
LDAP Funktionen
Kurzform
ldap_search -- Suche im LDAP Baum
Vorschau
...ldap_search ldap_search (PHP 3, PHP 4, PHP 5) ldap_search -- Suche im LDAP Baum Beschreibung resource ldap_search ( resource Verbindungs-Kennung, string base_dn, string filter [, array merkmale [, int nur_werte [, int größenbegrenzung [, int zeitbegrenzung [, int deref]]]]] ) Rückgabewert: eine Such-Ergebnis-Kennung im Erfolgsfall, FALSE im Fehlerfall. Die ldap_search() Funktion führt die Suche für ...
PHP Manual
[ ldap_search php.net ]

PHP Funktion
max ( phplist Code 25% Relevanz )
Rubrik
Mathematische Funktionen
Kurzform
max -- Maximalwert bestimmen
Vorschau
...max max (PHP 3, PHP 4, PHP 5) max -- Maximalwert bestimmen Beschreibung mixed max ( mixed arg1, mixed arg2, mixed argn ) max() liefert den numerisch größten Eingabewert . Ist der erste Parameter ein Array, so wird der größte Wert innerhalb dieses Array gegeben. Anderenfalls müssen mindestens zwei Parameter übergeben werden, und max() liefert den Wert des größten Parameters . Die Anzahl der Eingabe-Parameter ist nur durch ...
PHP Manual
[ max php.net ]

PHP Funktion
mb_ereg_search_regs ( phplist Code 25% Relevanz )
Rubrik
Multibyte String Functions
Kurzform
mb_ereg_search_regs -- Returns the matched part of multibyte regular expression
Vorschau
...mb_ereg_search_regs mb_ereg_search_regs (PHP 4 >= 4.2.0) mb_ereg_search_regs -- Returns the matched part of multibyte regular expression Description array mb_ereg_search_regs ( [string pattern [, string option]] ) mb_ereg_search_regs() executes the multibyte regular expression match, and if there are some matched part, it returns an array including substring of matched ...
PHP Manual
[ mb_ereg_search_regs php.net ]

PHP Funktion
natcasesort ( phplist Code 25% Relevanz )
Rubrik
Array Funktionen
Kurzform
natcasesort -- Sortiert ein Array in "natürlicher Reihenfolge" Groß/Kleinschreibung wird ignoriert
Vorschau
...natcasesort natcasesort (PHP 4, PHP 5) natcasesort -- Sortiert ein Array in "natürlicher Reihenfolge", Groß/Kleinschreibung wird ignoriert Beschreibung bool natcasesort ( array &array ) Diese Funktion implementiert einen Sortieralgorithmus, welcher alphanumerische Zeichenketten reiht, wie es auch ein Mensch tun würde, wobei Sie die Schlüssel-Wert-Zuordnung beibehält. Das wird als "natürliche ...
PHP Manual
[ natcasesort php.net ]

PHP Funktion
runkit_superglobals ( phplist Code 25% Relevanz )
Rubrik
runkit Functions
Kurzform
runkit_superglobals -- Return numerically indexed array of registered superglobals
Vorschau
...runkit_superglobals runkit_superglobals (PECL) runkit_superglobals -- Return numerically indexed array of registered superglobals Beschreibung array runkit_superglobals ( void ) Rückgabewerte Returns a numerically indexed array of the currently registered superglobals. i.e. _GET, _POST, _REQUEST, _COOKIE, _SESSION, _SERVER, _ENV, _FILES Siehe auch Variable Scope ...
PHP Manual
[ runkit_superglobals php.net ]

PHP Funktion
stats_harmonic_mean ( phplist Code 25% Relevanz )
Rubrik
Statistics Functions
Kurzform
stats_harmonic_mean -- Returns the harmonic mean of an array of values
Vorschau
...stats_harmonic_mean stats_harmonic_mean (PECL) stats_harmonic_mean -- Returns the harmonic mean of an array of values Beschreibung number stats_harmonic_mean ( array a ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. Parameter Liste a Its description Rückgabewerte What the function returns, first on success, then on ...
PHP Manual
[ stats_harmonic_mean php.net ]

PHP Funktion
stream_get_wrappers ( phplist Code 25% Relevanz )
Rubrik
Stream Functions
Kurzform
stream_get_wrappers -- Retrieve list of registered streams
Vorschau
...stream_get_wrappers stream_get_wrappers (PHP 5) stream_get_wrappers -- Retrieve list of registered streams Description array stream_get_wrappers ( void ) Returns an indexed array containing the name of all stream wrappers available on the running system. Beispiel 1. stream_get_wrappers() example <?php print_r ( stream_get_wrappers ()); ?> Das oben gezeigte Beispiel erzeugteine ähnliche ...
PHP Manual
[ stream_get_wrappers php.net ]

PHP Funktion
unserialize ( phplist Code 25% Relevanz )
Rubrik
Funktionen zur Behandlung von Variablen
Kurzform
unserialize -- Erzeugt aus einem gespeicherten Datenformat einen Wert in PHP
Vorschau
... ) unserialize() nimmt eine einzelne Variable aus einer serialisierten Datenmenge (siehe serialize() ) und wandelt sie in einen PHP-Wert . Der konvertierte Wert wird gegeben und kann vom Typ integer , float , string , array oder object sein. Falls der übergebene Sting nicht deserialisierbar ist, wird FALSE gegeben und E_NOTICE produziert. Warnung FALSE wird sowohl im Fehlerfall als auch bei einem serialisierten FALSE -Wert gegeben. Es ist...
PHP Manual
[ unserialize php.net ]

PHP Funktion
Paradox File Access ( phplist Code 25% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... PX_FIELD_TIMESTAMP timestamp, number of milli seconds since 1.1.0000 PX_FIELD_AUTOINC Auto incrementing interger (like PX_FIELD_LONG) PX_FIELD_BCD Decimal number stored in bcd format (not supported) PX_FIELD_BYTES Array of Bytes with not more than 255 bytes (not supported) PX_KEYTOLOWER Turn all field names into lower case PX_KEYTOUPPER Turn all field names into upper case Tabelle 3. Contants for file types Name Meaning PX_FILE_INDEX_DB ...
PHP Manual
[ Paradox File Access php.net ]

PHP Funktion
aggregate_properties_by_list ( phplist Code 24% Relevanz )
Rubrik
Object Aggregation/Composition Functions
Kurzform
aggregate_properties_by_list -- Selective dynamic class properties aggregation to an object
Vorschau
... (PHP 4 >= 4.2.0) aggregate_properties_by_list -- Selective dynamic class properties aggregation to an object Description void aggregate_properties_by_list ( object object, string class_name, array properties_list [, bool exclude] ) Aggregates properties from a class to an existing object using a list of property names. The optional parameter exclude is used to decide whether the list contains the names of class ...
PHP Manual
[ aggregate_properties_by_list php.net ]

PHP Funktion
apc_sma_info ( phplist Code 24% Relevanz )
Rubrik
Alternative PHP Cache
Kurzform
apc_sma_info -- Retrieves APC's Shared Memory Allocation information
Vorschau
...apc_sma_info apc_sma_info (PECL) apc_sma_info -- Retrieves APC's Shared Memory Allocation information Beschreibung array apc_sma_info ( void ) Rückgabewerte Array of Shared Memory Allocation data; FALSE on failure. Beispiele Beispiel 1. A apc_sma_info() example <?php print_r ( apc_sma_info ()); ?> Das oben gezeigte Beispiel erzeugteine ähnliche Ausgabe wie: Array( [num_seg...
PHP Manual
[ apc_sma_info php.net ]

PHP Funktion
curl_multi_info_read ( phplist Code 24% Relevanz )
Rubrik
cURL Client URL Bibiothek-Funktionen
Kurzform
curl_multi_info_read -- Informationen über die aktuellen Transfers abfragen
Vorschau
...curl_multi_info_read curl_multi_info_read (PHP 5) curl_multi_info_read -- Informationen über die aktuellen Transfers abfragen Beschreibung array curl_multi_info_read ( resource mh ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. Siehe auch curl_multi_init() . curl_multi_getcontent curl_multi_init...
PHP Manual
[ curl_multi_info_read php.net ]

PHP Funktion
dba_handlers ( phplist Code 24% Relevanz )
Rubrik
dba Datenbank (dbm-style) Abstraktions-Funktionen
Kurzform
dba_handlers -- List all the handlers available
Vorschau
...dba_handlers dba_handlers (PHP 4 >= 4.3.0, PHP 5) dba_handlers -- List all the handlers available Beschreibung array dba_handlers ( [bool full_info] ) dba_handlers() list all the handlers supported by this extension. Parameter Liste full_info Turns on/off full information display in the result. The default is FALSE . Rückgabewerte ...
PHP Manual
[ dba_handlers php.net ]

PHP Funktion
dbase_replace_record ( phplist Code 24% Relevanz )
Rubrik
dBase Funktionen
Kurzform
dbase_replace_record -- Ersetzt einen Datensatz in einer dBase-Datenbank
Vorschau
...dbase_replace_record dbase_replace_record (PHP 3 >= 3.0.11, PHP 4, PHP 5) dbase_replace_record -- Ersetzt einen Datensatz in einer dBase-Datenbank Beschreibung: bool dbase_replace_record ( int dbase_identifier, array record, int dbase_record_number ) Überschreibt die Daten des Datensatzes record_number mit den Daten aus record in der Datenbank. Falls die Anzahl der definierten Einträge ungleich der Anzahl der Datenfelder in dem ...
PHP Manual
[ dbase_replace_record php.net ]

PHP Funktion
dbplus_rkeys ( phplist Code 24% Relevanz )
Rubrik
DB++ Functions
Kurzform
dbplus_rkeys -- Specify new primary key for a relation
Vorschau
...Sie diese Funktion aufeigenes Risiko. dbplus_rkeys() will replace the current primary key for relation with the combination of domains specified by domlist . domlist may be passed as a single domain name string or as an array of domain names. Returns resource on success or DBPLUS_ERR_UNKNOWN on failure. dbplus_restorepos dbplus_ropen...
PHP Manual
[ dbplus_rkeys php.net ]

PHP Funktion
geoip_record_by_name ( phplist Code 24% Relevanz )
Rubrik
GeoIP Functions
Kurzform
geoip_record_by_name -- Returns the detailed City information found in the GeoIP Database
Vorschau
...geoip_record_by_name geoip_record_by_name (no version information, might be only in CVS) geoip_record_by_name -- Returns the detailed City information found in the GeoIP Database Beschreibung array geoip_record_by_name ( string hostname ) The geoip_record_by_name() function will return the record information corresponding to a hostname or an IP address. This function is available for both GeoLite City Edition and ...
PHP Manual
[ geoip_record_by_name php.net ]

PHP Funktion
get_declared_classes ( phplist Code 24% Relevanz )
Rubrik
Klassen- und Objekt-Funktionen
Kurzform
get_declared_classes -- Gibt ein Array mit den Namen der definierten Klassen zurück
Vorschau
...get_declared_classes get_declared_classes (PHP 4, PHP 5) get_declared_classes -- Gibt ein Array mit den Namen der definierten Klassen Beschreibung array get_declared_classes ( void ) Diese Funktion gibt ein Array mit den Namen aller im aktuellen Skript definierten Klassen . Anmerkung: In PHP 4.0.1pl2 werden drei zusätzliche Klassen am Anfang des Array gegeben: stdClass (definiert in Zend/zend.c ), OverloadedTestClass (definiert in...
PHP Manual
[ get_declared_classes php.net ]

PHP Funktion
gettimeofday ( phplist Code 24% Relevanz )
Rubrik
Datums- und Zeit-Funktionen
Kurzform
gettimeofday -- Gibt die aktuelle Zeit zurück
Vorschau
...gettimeofday gettimeofday (PHP 3 >= 3.0.7, PHP 4, PHP 5) gettimeofday -- Gibt die aktuelle Zeit Beschreibung: array gettimeofday ( void ) Es handelt sich um eine Schnittstelle zum Systemaufruf von gettimeofday(2). Die Zeitangaben werden als assoziatives Array gegeben. Folgende Arrayelemente sind vorhanden: "sec" - Sekunden "usec...
PHP Manual
[ gettimeofday php.net ]

PHP Funktion
gnupg_verify ( phplist Code 24% Relevanz )
Rubrik
gnupg Funktionen
Kurzform
gnupg_verify -- Verifies a signed text
Vorschau
...gnupg_verify gnupg_verify (no version information, might be only in CVS) gnupg_verify -- Verifies a signed text Beschreibung array gnupg_verify ( resource identifier, string signed_text, string signature [, string plaintext] ) Verifies the given signed_text and returns information about the signature. To verify a clearsigned text, set signature to ...
PHP Manual
[ gnupg_verify php.net ]

PHP Funktion
headers_list ( phplist Code 24% Relevanz )
Rubrik
Netzwerk Funktionen
Kurzform
headers_list -- Gibt eine Liste der gesendeten (oder zum Senden vorbereiteten) Response Header zurück
Vorschau
...headers_list headers_list (PHP 5) headers_list -- Gibt eine Liste der gesendeten (oder zum Senden vorbereiteten) Response Header Beschreibung array headers_list ( void ) headers_list() gibt ein numerisch indiziertes Array der Header , die zum Browser/Client gesendet werden. Um festzustellen, ob diese Header bereits gesendet worden sind, verwenden Sie headers_sent() . Beispiel 1. Beispiele zur Verwendung von headers_list() <?php /* ...
PHP Manual
[ headers_list php.net ]

PHP Funktion
imagepolygon ( phplist Code 24% Relevanz )
Rubrik
Grafik-Funktionen
Kurzform
imagepolygon -- Zeichnen eines Vielecks (Polygon)
Vorschau
...imagepolygon imagepolygon (PHP 3, PHP 4, PHP 5) imagepolygon -- Zeichnen eines Vielecks (Polygon) Beschreibung: int imagepolygon ( resource im, array points, int num_points, int col ) ImagePolygon() erzeugt ein Vieleck innerhalb von im . Points ist ein PHP-Array, das die Werte für die Eckpunkte des Polygons enthält, z.B. Points[0] = x0, Points[1] = y0, Points[2] = x1, ...
PHP Manual
[ imagepolygon php.net ]

PHP Funktion
imap_headers ( phplist Code 24% Relevanz )
Rubrik
IMAP POP3 und NNTP Funktionen
Kurzform
imap_headers -- Liefert eine Zusammenfassung aller Nachrichtenköpfe eines Postfachs
Vorschau
...imap_headers imap_headers (PHP 3, PHP 4, PHP 5) imap_headers -- Liefert eine Zusammenfassung aller Nachrichtenköpfe eines Postfachs Beschreibung array imap_headers ( int imap_stream ) Diese Funktion liefert ein String-Array, das je Nachricht einen String mit vorformatierten Informationen aus dem Nachrichtenheader enthält. imap_headerinfo imap_last_error...
PHP Manual
[ imap_headers php.net ]

PHP Funktion
kadm5_get_principals ( phplist Code 24% Relevanz )
Rubrik
KADM5
Kurzform
kadm5_get_principals -- Gets all principals from the Kerberos database
Vorschau
...kadm5_get_principals kadm5_get_principals (PECL) kadm5_get_principals -- Gets all principals from the Kerberos database Beschreibung array kadm5_get_principals ( resource handle ) kadm5_get_principals() returns an array containing the principals's names. Rückgabewerte Returns array of principals on success, or FALSE on failure. Beispiele Beispiel 1. kadm5_get_principals() example <?php $handle = kadm5_init_with_password ( "afs-1...
PHP Manual
[ kadm5_get_principals php.net ]

PHP Funktion
ldap_mod_add ( phplist Code 24% Relevanz )
Rubrik
LDAP Funktionen
Kurzform
ldap_mod_add -- Hinzufügen von Merkmalswerten zu aktuellen Merkmalen
Vorschau
...ldap_mod_add ldap_mod_add (PHP 3 >= 3.0.8, PHP 4, PHP 5) ldap_mod_add -- Hinzufügen von Merkmalswerten zu aktuellen Merkmalen Beschreibung bool ldap_mod_add ( resource Verbindungs-Kennung, string dn, array eintrag ) Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Diese Funktion fügt Merkmal(e) zum angegebenen dn hinzu. Die Änderung wird auf der Merkmalsebene durchgeführt im Gegensatz zur Objektebene. Das Hinzufügen auf der ...
PHP Manual
[ ldap_mod_add php.net ]

PHP Funktion
ldap_parse_reference ( phplist Code 24% Relevanz )
Rubrik
LDAP Funktionen
Kurzform
ldap_parse_reference -- Gewinnt Informationen aus einem Referenz-Eintrag
Vorschau
...ldap_parse_reference ldap_parse_reference (PHP 4 >= 4.0.5, PHP 5) ldap_parse_reference -- Gewinnt Informationen aus einem Referenz-Eintrag Beschreibung bool ldap_parse_reference ( resource link, resource entry, array referrals ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. ldap_next_reference ldap_parse_result...
PHP Manual
[ ldap_parse_reference php.net ]

PHP Funktion
mb_convert_variables ( phplist Code 24% Relevanz )
Rubrik
Multibyte String Functions
Kurzform
mb_convert_variables -- Convert character code in variable(s)
Vorschau
...() convert character encoding of variables vars in encoding from_encoding to encoding to_encoding . It returns character encoding before conversion for success, FALSE for failure. mb_convert_variables() join strings in Array or Object to detect encoding, since encoding detection tends to fail for short strings. Therefore, it is impossible to mix encoding in single array or object. It from_encoding is specified by array or comma separated ...
PHP Manual
[ mb_convert_variables php.net ]

PHP Funktion
mcal_next_recurrence ( phplist Code 24% Relevanz )
Rubrik
MCAL Funktionen
Kurzform
mcal_next_recurrence -- Returns the next recurrence of the event
Vorschau
...mcal_next_recurrence mcal_next_recurrence (PHP 3 >= 3.0.13, PHP 4, PECL) mcal_next_recurrence -- Returns the next recurrence of the event Description int mcal_next_recurrence ( int stream, int weekstart, array next ) mcal_next_recurrence() returns an object filled with the next date the event occurs, on or after the supplied date. Returns empty date field if event does not occur or something is invalid. Uses weekstart to ...
PHP Manual
[ mcal_next_recurrence php.net ]

PHP Funktion
notes_search ( phplist Code 24% Relevanz )
Rubrik
Lotus Notes Functions
Kurzform
notes_search -- Find notes that match keywords in database_name
Vorschau
...notes_search notes_search (PHP 4 >= 4.0.5, PECL) notes_search -- Find notes that match keywords in database_name Beschreibung array notes_search ( string database_name, string keywords ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkü...
PHP Manual
[ notes_search php.net ]

PHP Funktion
notes_unread ( phplist Code 24% Relevanz )
Rubrik
Lotus Notes Functions
Kurzform
notes_unread -- Returns the unread note id's for the current User user_name
Vorschau
...notes_unread notes_unread (PHP 4 >= 4.0.5, PECL) notes_unread -- Returns the unread note id's for the current User user_name Beschreibung array notes_unread ( string database_name, string user_name ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnk...
PHP Manual
[ notes_unread php.net ]

PHP Funktion
pg_meta_data ( phplist Code 24% Relevanz )
Rubrik
PostgreSQL Funktionen
Kurzform
pg_meta_data -- Gibt Metadaten einer Tabelle als Array zurück
Vorschau
...pg_meta_data pg_meta_data (PHP 4 >= 4.3.0, PHP 5) pg_meta_data -- Gibt Metadaten einer Tabelle als Array Beschreibung array pg_meta_data ( resource connection, string table_name ) pg_meta_data() gibt die Tabellendefinition für table_name in einem Array . Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und ...
PHP Manual
[ pg_meta_data php.net ]

PHP Funktion
pg_send_query_params ( phplist Code 24% Relevanz )
Rubrik
PostgreSQL Funktionen
Kurzform
pg_send_query_params -- Sendet ein Kommando und separate Parameter zum Server ohne auf die Rückgabe der Ergebnisse zu warten.
Vorschau
...5 >= 5.1.0RC1) pg_send_query_params -- Sendet ein Kommando und separate Parameter zum Server, ohne auf die Rückgabe der Ergebnisse zu warten. Beschreibung bool pg_send_query_params ( resource connection, string query, array params ) Sendet ein Kommando und separate Parameter zum Server ohne auf die Rückgabe der Ergebnisse zu warten. Diese Funktion ist gleichwertig zu pg_send_query() mit dem Unterschied, dass Parameter für die Abfrage ...
PHP Manual
[ pg_send_query_params php.net ]

PHP Funktion
printer_list ( phplist Code 24% Relevanz )
Rubrik
Drucker Funktionen
Kurzform
printer_list -- Liefert ein Array von Zeigern auf den Server zurück
Vorschau
...printer_list printer_list (PECL) printer_list -- Liefert ein Array von Zeigern auf den Server Beschreibung array printer_list ( int enumtype [, string name [, int level]] ) Die Funktion zählt verfügbare Drucker und ihre Eigenschaften auf. level stellt die Menge der erwünschten Informationen ein und muss 1,2,4 oder 5 sein. enumtype ...
PHP Manual
[ printer_list php.net ]

PHP Funktion
px_create_fp ( phplist Code 24% Relevanz )
Rubrik
Paradox File Access
Kurzform
px_create_fp -- Create a new paradox database
Vorschau
...px_create_fp px_create_fp (PECL) px_create_fp -- Create a new paradox database Beschreibung bool px_create_fp ( resource pxdoc, resource file, array fielddesc ) Create a new paradox database file. The actual file has to be opened before with fopen() . Make sure the file is writable. Anmerkung: Calling this functions issues a warning about an empty tablename which can...
PHP Manual
[ px_create_fp php.net ]

PHP Funktion
snmprealwalk ( phplist Code 24% Relevanz )
Rubrik
SNMP Funktionen
Kurzform
snmprealwalk -- Return all objects including their respective object ID within the specified one
Vorschau
...snmprealwalk snmprealwalk (PHP 3 >= 3.0.8, PHP 4, PHP 5) snmprealwalk -- Return all objects including their respective object ID within the specified one Beschreibung array snmprealwalk ( string host, string community, string object_id [, int timeout [, int retries]] ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. snmpgetnext ...
PHP Manual
[ snmprealwalk php.net ]

PHP Funktion
SoapServer->addFunction() ( phplist Code 24% Relevanz )
Rubrik
SOAP Funktionen
Kurzform
SoapServer->addFunction() -- Hinzufügen einer oder mehrerer Funktionen die SOAP Anfragen bearbeiten sollen.
Vorschau
... mehreren Funktionen für entfernte Clients. Parameter Liste Funktionen To export one function, pass the function name into this parameter as a string. Funktionsname als String übergeben, um eine Funktion hinzuzufügen. Array mit Funktionsnamen übergeben, um mehrere Funktionen hinzuzufügen. Spezielle Konstante SOAP_FUNCTIONS_ALL übergeben, um alle Funktionen zu exportieren. Anmerkung: Funktionen müssen alle Argumente in der gleichen ...
PHP Manual
[ SoapServer->addFunction() php.net ]

PHP Funktion
stats_rand_get_seeds ( phplist Code 24% Relevanz )
Rubrik
Statistics Functions
Kurzform
stats_rand_get_seeds -- Not documented
Vorschau
...stats_rand_get_seeds stats_rand_get_seeds (no version information, might be only in CVS) stats_rand_get_seeds -- Not documented Beschreibung array stats_rand_get_seeds ( void ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. Parameter Liste Rückgabewerte What the function returns, first on success, then ...
PHP Manual
[ stats_rand_get_seeds php.net ]

PHP Funktion
stripslashes ( phplist Code 24% Relevanz )
Rubrik
String-Funktionen
Kurzform
stripslashes -- Entfernt Quotes aus einem mittels addslashes() gequoteten String
Vorschau
...() -Beispiel <?php $str = "Ist Ihr Name O\'reilly?" ; // Ausgabe: Ist Ihr Name O'reilly? echo stripslashes ( $str ); ?> Anmerkung: stripslashes() ist nicht rekursiv. Wenn Sie die Funktion auf ein mehrdimensionales Array anwenden wollen, müssen Sie eine rekursive Funktion verwenden. Beispiel 2. Verwendung von stripslashes() in einem Array <?php function stripslashes_deep ( $value ) { $value = is_array ( $value ) ? array_map ( '...
PHP Manual
[ stripslashes php.net ]

PHP Funktion
udm_cat_path ( phplist Code 24% Relevanz )
Rubrik
mnoGoSearch Funktionen
Kurzform
udm_cat_path -- Liefert den Pfad zur aktuellen Kategorie zurück.
Vorschau
...udm_cat_path udm_cat_path (PHP 4 >= 4.0.6, PHP 5 <= 5.0.4) udm_cat_path -- Liefert den Pfad zur aktuellen Kategorie . Beschreibung array udm_cat_path ( int agent, string category ) udm_cat_path() gibt einen Array , der den Pfad im Kategorienbaum von der Wurzel an bis zur aktuellen Kategorie enthält. agent - Zeiger auf den Agenten. category - aktuelle Kategorie - diejenige, zu der der Pfad herausgefunden werden soll. Gibt einen ...
PHP Manual
[ udm_cat_path php.net ]

PHP Funktion
ZipArchive::statName ( phplist Code 24% Relevanz )
Rubrik
ZIP Funktionen (Lesezugriff)
Kurzform
ZipArchive::statName -- Get the details of an entry defined by its name.
Vorschau
...::FL_UNCHANGED may be ORed to it to request information about the original file in the archive, ignoring any changes made. ZIPARCHIVE::FL_NOCASE ZIPARCHIVE::FL_NODIR ZIPARCHIVE::FL_UNCHANGED Rückgabewerte Returns an array containing the entry details or FALSE on failure. Beispiele Beispiel 1. Dump the stat info of an entry <?php $zip = new ZipArchive ; $res = $zip -> open ( 'test.zip' ) if ( $res === TRUE ) { print_r ( $zip -> ...
PHP Manual
[ ZipArchive::statName php.net ]

PHP Funktion
Standard PHP Library (SPL) Functions ( phplist Code 24% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... ) RecursiveIteratorIterator::SELF_FIRST ( integer ) RecursiveIteratorIterator::CHILD_FIRST ( integer ) CachingIterator::CALL_TOSTRING ( integer ) CachingIterator::CATCH_GET_CHILD ( integer ) Inhaltsverzeichnis ArrayIterator::current -- Return current array entry ArrayIterator::key -- Return current array key ArrayIterator::next -- Move to next entry ArrayIterator::rewind -- Rewind array back to the start ArrayIterator::seek -- Seek ...
PHP Manual
[ Standard PHP Library (SPL) Functions php.net ]

PHP Funktion
XML Parser Functions ( phplist Code 24% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... XML documents. XML Element Structure Example This first example displays the structure of the start elements in a document with indentation. Beispiel 1. Show XML Element Structure <?php $file = "data.xml" ; $depth = array(); function startElement ( $parser , $name , $attrs ) { global $depth ; for ( $i = 0 ; $i < $depth [ $parser ]; $i ++) { echo " " ; } echo "$name \n " ; $depth [ $parser ]++; } function endElement ( $parser , $name...
PHP Manual
[ XML Parser Functions php.net ]

PHP Funktion
maxdb_stmt_bind_param ( phplist Code 23% Relevanz )
Rubrik
MaxDB PHP Extension
Kurzform
maxdb_stmt_bind_param (no version information might be only in CVS)stmt->bind_param -- Binds variables to a prepared statement as parameters
Vorschau
...38;...] ) Object oriented style (method): class stmt { bool bind_param ( string types, mixed &var1 [, mixed &...] ) } Procedural style (extended syntax): bool maxdb_stmt_bind_param ( resource stmt, string types, array &var ) Object oriented style (method) (extended syntax): class stmt { bool bind_param ( string types, array &var ) } maxdb_stmt_bind_param() is used to bind variables for the parameter markers in the SQL ...
PHP Manual
[ maxdb_stmt_bind_param php.net ]

PHP Funktion
nsapi_request_headers ( phplist Code 23% Relevanz )
Rubrik
NSAPI-specific Functions
Kurzform
nsapi_request_headers -- Fetch all HTTP request headers
Vorschau
...nsapi_request_headers nsapi_request_headers (PHP 4 >= 4.3.3, PHP 5) nsapi_request_headers -- Fetch all HTTP request headers Beschreibung array nsapi_request_headers ( void ) nsapi_request_headers() gets all the HTTP headers in the current request. This is only supported when PHP runs as a NSAPI module. Anmerkung: Prior to PHP 4.3.3, getallheaders() was only ...
PHP Manual
[ nsapi_request_headers php.net ]

PHP Funktion
parsekit_func_arginfo ( phplist Code 23% Relevanz )
Rubrik
Parsekit Functions
Kurzform
parsekit_func_arginfo -- Return information regarding function argument(s)
Vorschau
...parsekit_func_arginfo parsekit_func_arginfo (PECL) parsekit_func_arginfo -- Return information regarding function argument(s) Beschreibung array parsekit_func_arginfo ( mixed function ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkündigung ändern...
PHP Manual
[ parsekit_func_arginfo php.net ]

PHP Funktion
preg_replace_callback ( phplist Code 23% Relevanz )
Rubrik
Reguläre Ausdrücke Funktionen (Perl-kompatibel)
Kurzform
preg_replace_callback -- Sucht und ersetzt einen regulären Ausdruck unter Verwendung eines Callbacks
Vorschau
... preg_replace_callback ( mixed Suchmuster, callback Callback, mixed Zeichenkette [, int Limit [, int &Zähler]] ) Abgesehen von der Tatsache, dass statt des Parameters Ersatz ein Callback angeben werden soll, dem ein Array von Übereinstimmungen mit der durchsuchten Zeichenkette übergeben wird, ist das Verhalten dieser Funktion identisch zu preg_replace() . Der Callback sollte die Ersetzungs-Zeichenkette liefern. Für eine Beschreibung der ...
PHP Manual
[ preg_replace_callback php.net ]

PHP Funktion
readline_list_history ( phplist Code 23% Relevanz )
Rubrik
GNU Readline
Kurzform
readline_list_history -- Auflistung der History
Vorschau
...readline_list_history readline_list_history (PHP 4, PHP 5) readline_list_history -- Auflistung der History Beschreibung array readline_list_history ( void ) Diese Funktion gibt ein Array der gesamten Kommandozeilen-History . Die Elemente sind numerisch indiziert, beginnend bei Null. readline_info readline_on_new_line...
PHP Manual
[ readline_list_history php.net ]

PHP Funktion
stream_get_transports ( phplist Code 23% Relevanz )
Rubrik
Stream Functions
Kurzform
stream_get_transports -- Retrieve list of registered socket transports
Vorschau
...stream_get_transports stream_get_transports (PHP 5) stream_get_transports -- Retrieve list of registered socket transports Description array stream_get_transports ( void ) Returns an indexed array containing the name of all socket transports available on the running system. Beispiel 1. Using stream_get_transports() <?php $xportlist = stream_get_transports (); print_r ( $xportlist ); ?> Output will be ...
PHP Manual
[ stream_get_transports php.net ]

PHP Funktion
xml_parse_into_struct ( phplist Code 23% Relevanz )
Rubrik
XML Parser Functions
Kurzform
xml_parse_into_struct -- Parse XML data into an array structure
Vorschau
...xml_parse_into_struct xml_parse_into_struct (PHP 3 >= 3.0.8, PHP 4, PHP 5) xml_parse_into_struct -- Parse XML data into an array structure Description int xml_parse_into_struct ( resource parser, string data, array &values [, array &index] ) This function parses an XML file into 2 parallel array structures, one ( index ) containing pointers to the location of the appropriate values in the values array. These last two ...
PHP Manual
[ xml_parse_into_struct php.net ]

PHP Funktion
ZipArchive::statIndex ( phplist Code 23% Relevanz )
Rubrik
ZIP Funktionen (Lesezugriff)
Kurzform
ZipArchive::statIndex -- Get the details of an entry defined by its index.
Vorschau
... its index. Parameter Liste index Index of the entry flags ZIPARCHIVE::FL_UNCHANGED may be ORed to it to request information about the original file in the archive, ignoring any changes made. Rückgabewerte Returns an array containing the entry details or FALSE on failure. Beispiele Beispiel 1. Dump the stat info of an entry <?php $zip = new ZipArchive ; $res = $zip -> open ( 'test.zip' ) if ( $res === TRUE ) { print_r ( $zip -> ...
PHP Manual
[ ZipArchive::statIndex php.net ]

PHP Funktion
List of Parser Tokens ( phplist Code 23% Relevanz )
Rubrik
Anhang
Kurzform
-----
Vorschau
... the appropriate places in the manual. Tabelle Q-1. Tokens Token Syntax Reference T_ABSTRACT abstract Abschnitt namens Klassenabstraktion in Kapitel 19 (available since PHP 5.0.0) T_AND_EQUAL &= assignment operators T_ARRAY array() array() , array syntax T_ARRAY_CAST (array) type-casting T_AS as foreach T_BAD_CHARACTER anything below ASCII 32 except \t (0x09), \n (0x0a) and \r (0x0d) T_BOOLEAN_AND && logical operators T_BOOLEAN_OR...
PHP Manual
[ List of Parser Tokens php.net ]

PHP Funktion
add_next_index_binary ( phplist Code 23% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
int add_next_index_binary ( zval* arg char* str int duplicate ) ...
Vorschau
...add_next_index_binary add_next_index_binary add_next_index_binary -- Add binary_string value to assoc array using next free numeric index Beschreibung #include <zend_API.h> int add_next_index_binary ( zval* arg, char* str, int duplicate ) ... Parameter Liste arg ... str ... duplicate ... Rückgabewerte ... ...
PHP Manual
[ add_next_index_binary php.net ]

PHP Funktion
apd_callstack ( phplist Code 22% Relevanz )
Rubrik
Advanced PHP debugger
Kurzform
apd_callstack -- Returns the current call stack as an array
Vorschau
...apd_callstack apd_callstack (no version information, might be only in CVS) apd_callstack -- Returns the current call stack as an array Beschreibung array apd_callstack ( void ) Returns the current call stack as an array Rückgabewerte An array containing the current call stack. Beispiele Beispiel 1. apd_callstack() example <?php print_r ( apd_callstack ()); ?> apd_breakpoint apd_clunk...
PHP Manual
[ apd_callstack php.net ]

PHP Funktion
apd_get_active_symbols ( phplist Code 22% Relevanz )
Rubrik
Advanced PHP debugger
Kurzform
apd_get_active_symbols -- Get an array of the current variables names in the local scope
Vorschau
...apd_get_active_symbols apd_get_active_symbols (no version information, might be only in CVS) apd_get_active_symbols -- Get an array of the current variables names in the local scope Beschreibung array apd_get_active_symbols ( void ) Returns the names of all the variables defined in the active scope, (not their values). Rückgabewerte A multidimensional array with all the variables. Beispiele Beispiel 1. ...
PHP Manual
[ apd_get_active_symbols php.net ]

PHP Funktion
class_parents ( phplist Code 22% Relevanz )
Rubrik
Standard PHP Library (SPL) Functions
Kurzform
class_parents -- Return the parent classes of the given class
Vorschau
...class_parents class_parents (PHP 5) class_parents -- Return the parent classes of the given class Beschreibung array class_parents ( mixed class [, bool autoload] ) This function returns an array with the name of the parent classes of the given class . Parameter Liste class An object (class instance) or a string (class name). autoload Whether to allow this function to load the class automatically through the ...
PHP Manual
[ class_parents php.net ]

PHP Funktion
dba_key_split ( phplist Code 22% Relevanz )
Rubrik
dba Datenbank (dbm-style) Abstraktions-Funktionen
Kurzform
dba_key_split -- Splits a key in string representation into array representation
Vorschau
...dba_key_split dba_key_split (PHP 5) dba_key_split -- Splits a key in string representation into array representation Beschreibung mixed dba_key_split ( mixed key ) dba_key_split() splits a key (string representation) into an array representation. Parameter Liste key The key in string representation. Rückgabewerte ...
PHP Manual
[ dba_key_split php.net ]

PHP Funktion
dio_tcsetattr ( phplist Code 22% Relevanz )
Rubrik
Direkte Ein-/Ausgabe Funktionen
Kurzform
dio_tcsetattr -- Sets terminal attributes and baud rate for a serial port
Vorschau
...dio_tcsetattr dio_tcsetattr (PHP 4 >= 4.3.0, PHP 5 <= 5.0.4) dio_tcsetattr -- Sets terminal attributes and baud rate for a serial port Beschreibung bool dio_tcsetattr ( resource fd, array options ) dio_tcsetattr() sets the terminal attributes and baud rate of the open fd . Anmerkung: Diese Funktion ist aufWindows-Plattformen nicht implementiert. Parameter Liste fd The file descriptor returned by ...
PHP Manual
[ dio_tcsetattr php.net ]

PHP Funktion
each ( phplist Code 22% Relevanz )
Rubrik
Array Funktionen
Kurzform
each -- Liefert das aktuelle Paar (Schlüssel und Wert) eines Arrays und rückt den Array Cursor vor
Vorschau
...each each (PHP 3, PHP 4, PHP 5) each -- Liefert das aktuelle Paar (Schlüssel und Wert) eines Arrays und rückt den Array Cursor vor Beschreibung array each ( array &array ) Liefert das aktuelle Schlüssel- Wertepaar des Arrays array , und erhöht den Array Cursor. Dieses Paar wird als Array mit 4 Elementen gegeben, und zwar mit den Schlüsseln 0 , 1 , key , und value . Die Elemente 0 und key...
PHP Manual
[ each php.net ]

PHP Funktion
ereg ( phplist Code 22% Relevanz )
Rubrik
Reguläre Ausdrücke Funktionen (POSIX erweitert)
Kurzform
ereg -- Sucht Übereinstimmungen mit einem regulären Ausdruck
Vorschau
...ereg ereg (PHP 3, PHP 4, PHP 5) ereg -- Sucht Übereinstimmungen mit einem regulären Ausdruck Beschreibung int ereg ( string Suchmuster, string Zeichenkette [, array &regs] ) Anmerkung: Die Funktion preg_match() , die eine zu Perl kompatible Syntax regulärer Ausdrücke verwendet, ist häufig die schnellere Alternative zu ereg() . Sucht in Zeichenkette unter Berücksichtigung der Gro...
PHP Manual
[ ereg php.net ]

PHP Funktion
func_get_args ( phplist Code 22% Relevanz )
Rubrik
Function Handling functions
Kurzform
func_get_args -- Gibt ein Array zurück das die Liste der einer Funktion übergebenen Argumente enthält
Vorschau
...func_get_args func_get_args (PHP 4, PHP 5) func_get_args -- Gibt ein Array , das die Liste der einer Funktion übergebenen Argumente enthält Beschreibung: array func_get_args ( void ) In einem Array wird jedes Element gegeben, das einer benutzerdefinierten Funktion übergeben wurde. Sollten sie dies ausserhalb einer eigenen (benutzer-definierten) Funktion anwenden, wird eine Warnung ausgegeben. <?php function foo...
PHP Manual
[ func_get_args php.net ]

PHP Funktion
get_meta_tags ( phplist Code 22% Relevanz )
Rubrik
URL Funktionen
Kurzform
get_meta_tags -- Liest alle content-Attribute der Meta-Tags einer Datei aus und gibt ein Array zurück
Vorschau
...get_meta_tags get_meta_tags (PHP 3 >= 3.0.4, PHP 4, PHP 5) get_meta_tags -- Liest alle content-Attribute der Meta-Tags einer Datei aus und gibt ein Array Beschreibung array get_meta_tags ( string filename [, bool use_include_path] ) Öffnet filename und untersucht die Datei Zeile für Zeile auf das Vorkommen von <meta>-Tags. Es kann eine lokale Datei oder ein URL übergeben werden. Das...
PHP Manual
[ get_meta_tags php.net ]

PHP Funktion
getallheaders ( phplist Code 22% Relevanz )
Rubrik
Apache-spezifische Funktionen
Kurzform
getallheaders -- Liefert alle HTTP-Header der aktuellen Anfrage aus
Vorschau
...getallheaders getallheaders (PHP 3, PHP 4, PHP 5) getallheaders -- Liefert alle HTTP-Header der aktuellen Anfrage aus Beschreibung array getallheaders ( void ) getallheaders() ist ein Alias für die Funktion apache_request_headers() . Die Funktion liefert ein assoziatives Array , das alle HTTP-Header der aktuellen HTTP-Anfrage enthält. Lesen Sie bitte die ...
PHP Manual
[ getallheaders php.net ]

PHP Funktion
http_put_data ( phplist Code 22% Relevanz )
Rubrik
HTTP Funktionen
Kurzform
http_put_data -- Perform PUT request with data
Vorschau
...http_put_data http_put_data (no version information, might be only in CVS) http_put_data -- Perform PUT request with data Beschreibung string http_put_data ( string url [, string data [, array options [, array &info]]] ) Performs an HTTP PUT request on the supplied url. See http_get() for a full list of available parameters and options . Parameter Liste url URL data PUT request body options Request options info ...
PHP Manual
[ http_put_data php.net ]

PHP Funktion
http_redirect ( phplist Code 22% Relevanz )
Rubrik
HTTP Funktionen
Kurzform
http_redirect -- Issue HTTP redirect
Vorschau
...http_redirect http_redirect (PECL) http_redirect -- Issue HTTP redirect Beschreibung void http_redirect ( [string url [, array params [, bool session = FALSE [, int status]]]] ) Redirect to the given url. The supplied url will be expanded with http_build_url() , the params array will be treated with http_build_str() and the session ...
PHP Manual
[ http_redirect php.net ]

PHP Funktion
hw_GetAnchors ( phplist Code 22% Relevanz )
Rubrik
Hyperwave Functions
Kurzform
hw_GetAnchors -- Object ids of anchors of document
Vorschau
...hw_GetAnchors hw_GetAnchors (PHP 3 >= 3.0.3, PHP 4, PECL) hw_GetAnchors -- Object ids of anchors of document Description array hw_getanchors ( int connection, int objectID ) Returns an array of object ids with anchors of the document with object ID objectID . hw_Free_Document hw_GetAnchorsObj...
PHP Manual
[ hw_GetAnchors php.net ]

PHP Funktion
hw_GetParents ( phplist Code 22% Relevanz )
Rubrik
Hyperwave Functions
Kurzform
hw_GetParents -- Object ids of parents
Vorschau
...hw_GetParents hw_GetParents (PHP 3 >= 3.0.3, PHP 4, PECL) hw_GetParents -- Object ids of parents Description array hw_getparents ( int connection, int objectID ) Returns an indexed array of object ids. Each object id belongs to a parent of the object with ID objectID . hw_GetObjectByQueryObj hw_GetParentsObj...
PHP Manual
[ hw_GetParents php.net ]

PHP Funktion
hw_api->srcanchors ( phplist Code 22% Relevanz )
Rubrik
Hyperwave API Functions
Kurzform
hw_api->srcanchors -- Returns a list of all source anchors
Vorschau
...-setcommittedversion.html"> srcsofdst"HREF="function.hwapi-srcsofdst.html"> hw_api->srcanchors (no version information, might be only in CVS) hw_api->srcanchors -- Returns a list of all source anchors Description array hw_api->srcanchors ( array parameter ) Retrieves all source anchors of an object. The parameter array contains the required element 'objectIdentifier' and the optional elements 'attributeSelector' and 'objectQuery...
PHP Manual
[ hw_api->srcanchors php.net ]

PHP Funktion
imagesetstyle ( phplist Code 22% Relevanz )
Rubrik
Grafik-Funktionen
Kurzform
imagesetstyle -- Set the style for line drawing
Vorschau
...imagesetstyle imagesetstyle (PHP 4 >= 4.0.6, PHP 5) imagesetstyle -- Set the style for line drawing Description bool imagesetstyle ( resource image, array style ) imagesetstyle() sets the style to be used by all line drawing functions (such as imageline() and imagepolygon() ) when drawing with the special color IMG_COLOR_STYLED or lines of images with color ...
PHP Manual
[ imagesetstyle php.net ]

PHP Funktion
imap_listscan ( phplist Code 22% Relevanz )
Rubrik
IMAP POP3 und NNTP Funktionen
Kurzform
imap_listscan -- Read the list of mailboxes takes a string to search for in the text of the mailbox
Vorschau
...imap_listscan imap_listscan (no version information, might be only in CVS) imap_listscan -- Read the list of mailboxes, takes a string to search for in the text of the mailbox Description array imap_listscan ( resource imap_stream, string ref, string pattern, string content ) Returns an array containing the names of the mailboxes that have content in the text of the mailbox. This function is similar to ...
PHP Manual
[ imap_listscan php.net ]

PHP Funktion
kadm5_create_principal ( phplist Code 22% Relevanz )
Rubrik
KADM5
Kurzform
kadm5_create_principal -- Creates a kerberos principal with the given parameters
Vorschau
... kadm5_create_principal (PECL) kadm5_create_principal -- Creates a kerberos principal with the given parameters Beschreibung bool kadm5_create_principal ( resource handle, string principal [, string password [, array options]] ) kadm5_create_principal() creates a principal with the given password . If password is omitted or is NULL , a random key will be generated. It is possible to specify several optional parameters within the ...
PHP Manual
[ kadm5_create_principal php.net ]

PHP Funktion
mailparse_rfc822_parse_addresses ( phplist Code 22% Relevanz )
Rubrik
mailparse Functions
Kurzform
mailparse_rfc822_parse_addresses -- Parse addresses and returns a hash containing that data
Vorschau
...mailparse_rfc822_parse_addresses mailparse_rfc822_parse_addresses (4.1.0 - 4.1.2 only, PECL) mailparse_rfc822_parse_addresses -- Parse addresses and returns a hash containing that data Beschreibung array mailparse_rfc822_parse_addresses ( string addresses ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkü...
PHP Manual
[ mailparse_rfc822_parse_addresses php.net ]

PHP Funktion
mailparse_uudecode_all ( phplist Code 22% Relevanz )
Rubrik
mailparse Functions
Kurzform
mailparse_uudecode_all -- Scans the data from fp and extract each embedded uuencoded file
Vorschau
...mailparse_uudecode_all mailparse_uudecode_all (PECL) mailparse_uudecode_all -- Scans the data from fp and extract each embedded uuencoded file Beschreibung array mailparse_uudecode_all ( resource fp ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkündigung ändern. ...
PHP Manual
[ mailparse_uudecode_all php.net ]

PHP Funktion
mb_ereg_search_getregs ( phplist Code 22% Relevanz )
Rubrik
Multibyte String Functions
Kurzform
mb_ereg_search_getregs -- Retrieve the result from the last multibyte regular expression match
Vorschau
...mb_ereg_search_getregs mb_ereg_search_getregs (PHP 4 >= 4.2.0) mb_ereg_search_getregs -- Retrieve the result from the last multibyte regular expression match Description array mb_ereg_search_getregs ( void ) mb_ereg_search_getregs() returns an array including the sub-string of matched part by last mb_ereg_search() , mb_ereg_search_pos() , mb_ereg_search_regs() . If there are some maches, the ...
PHP Manual
[ mb_ereg_search_getregs php.net ]

PHP Funktion
newt_form_run ( phplist Code 22% Relevanz )
Rubrik
Newt Functions
Kurzform
newt_form_run -- Runs a form
Vorschau
...newt_form_run newt_form_run (PECL) newt_form_run -- Runs a form Beschreibung void newt_form_run ( resource form, array &exit_struct ) This function runs the form passed to it. Parameter Liste form Form component exit_struct Array, used for returning information after running the form component. Keys and values are described in the...
PHP Manual
[ newt_form_run php.net ]

PHP Funktion
nsapi_response_headers ( phplist Code 22% Relevanz )
Rubrik
NSAPI-specific Functions
Kurzform
nsapi_response_headers -- Fetch all HTTP response headers
Vorschau
...nsapi_response_headers nsapi_response_headers (PHP 4 >= 4.3.3, PHP 5) nsapi_response_headers -- Fetch all HTTP response headers Beschreibung array nsapi_response_headers ( void ) Gets all the NSAPI response headers. Rückgabewerte Returns an associative array with all the NSAPI response headers. Siehe auch nsapi_request_headers() headers_sent() ...
PHP Manual
[ nsapi_response_headers php.net ]

PHP Funktion
pfpro_process ( phplist Code 22% Relevanz )
Rubrik
Verisign Payflow Pro Funktionen
Kurzform
pfpro_process -- Führt eine Transaktion mit Payflow Pro aus
Vorschau
...pfpro_process pfpro_process (PHP 4 >= 4.0.2, PHP 5) pfpro_process -- Führt eine Transaktion mit Payflow Pro aus Beschreibung array pfpro_process ( array parameters [, string address [, int port [, int timeout [, string proxy address [, int proxy port [, string proxy logon [, string proxy password]]]]]]] ) Gibt einen assoziativen Array, der die Antwort enthält, . ...
PHP Manual
[ pfpro_process php.net ]

PHP Funktion
prev ( phplist Code 22% Relevanz )
Rubrik
Array Funktionen
Kurzform
prev -- Verkleinert den internen Zeiger eines Arrays
Vorschau
...prev prev (PHP 3, PHP 4, PHP 5) prev -- Verkleinert den internen Zeiger eines Arrays Beschreibung mixed prev ( array &array ) Liefert den Wert des Elements vor der Position des Arrays, auf die der interne Zeiger gerade zeigt. Sind keine Elemente mehr vorhanden, wird FALSE gegeben. Warnung Diese Funktion kann sowohl dasBoolsche FALSE liefern, als auch einen nicht-Boolschen Wert, wie zumBeispiel 0 oder...
PHP Manual
[ prev php.net ]

PHP Funktion
px_get_record ( phplist Code 22% Relevanz )
Rubrik
Paradox File Access
Kurzform
px_get_record -- Returns record of paradox database
Vorschau
...px_get_record px_get_record (PECL) px_get_record -- Returns record of paradox database Beschreibung array px_get_record ( resource pxdoc, int num [, int mode] ) Parameter Liste pxdoc Resource identifier of the paradox database as returned by px_new() . num The record number is an artificial number counting records in the ...
PHP Manual
[ px_get_record php.net ]

PHP Funktion
px_numrecords ( phplist Code 22% Relevanz )
Rubrik
Paradox File Access
Kurzform
px_numrecords -- Returns number of records in a database
Vorschau
...pxdoc Resource identifier of the paradox database as returned by px_new() . Rückgabewerte Returns the number of records in a database file. The return value of this function is identical to the element numrecords in the array returned by px_get_info() . px_numfields px_open_fp...
PHP Manual
[ px_numrecords php.net ]

PHP Funktion
px_put_record ( phplist Code 22% Relevanz )
Rubrik
Paradox File Access
Kurzform
px_put_record -- Stores record into paradox database
Vorschau
...px_put_record px_put_record (PECL) px_put_record -- Stores record into paradox database Beschreibung bool px_put_record ( resource pxdoc, array record [, int recpos] ) Stores a record into a paradox database. The record is always added at the end of the database, regardless of any free slots. Use px_insert_record() to add a new record into the first free slot ...
PHP Manual
[ px_put_record php.net ]

PHP Funktion
readline_info ( phplist Code 22% Relevanz )
Rubrik
GNU Readline
Kurzform
readline_info -- Liest/Setzt verschiedene interne readline Variablen
Vorschau
...4, PHP 5) readline_info -- Liest/Setzt verschiedene interne readline Variablen Beschreibung mixed readline_info ( [string Varname [, string Neuerwert]] ) Wenn diese Funktion ohne Parameter aufgerufen wird, gibt sie einen Array von Werten für alle Einstellungen , die readline benutzt. Die Elemente werden durch die folgenden Werte indiziert: done, end, erase_empty_line, library_version, line_buffer, mark, pending_input, point, prompt, ...
PHP Manual
[ readline_info php.net ]

PHP Funktion
SDO_DAS_Relational::executeQuery ( phplist Code 22% Relevanz )
Rubrik
SDO Relational Data Access Service Functions
Kurzform
SDO_DAS_Relational::executeQuery -- Executes a given SQL query against a relational database and returns the results as a normalised data graph.
Vorschau
... -- Executes a given SQL query against a relational database and returns the results as a normalised data graph. Beschreibung SDODataObject SDO_DAS_Relational::executeQuery ( PDO database_handle, string SQL_statement [, array column_specifier] ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkündigung ändern. Seien Sie gewarnt ...
PHP Manual
[ SDO_DAS_Relational::executeQuery php.net ]

PHP Funktion
sort ( phplist Code 22% Relevanz )
Rubrik
Array Funktionen
Kurzform
sort -- Sortiert ein Array
Vorschau
...sort sort (PHP 3, PHP 4, PHP 5) sort -- Sortiert ein Array Beschreibung bool sort ( array &array [, int sort_flags] ) Diese Funktion sortiert ein Array. Die Elemente werden aufsteigend vom niedrigsten zum höchsten Wert sortiert. Anmerkung: This functionassigns new keys for the elements in array .It will remove any existing keys you may have assigned, ratherthan just ...
PHP Manual
[ sort php.net ]

PHP Funktion
stat ( phplist Code 22% Relevanz )
Rubrik
Funktionen des Dateisystems
Kurzform
stat -- Liefert diverse Informationen über eine Datei
Vorschau
...stat stat (PHP 3, PHP 4, PHP 5) stat -- Liefert diverse Informationen über eine Datei Beschreibung array stat ( string filename ) Sammelt Informationen über eine Datei spezifiziert in filename . Gibt einen Array mit folgenden statistischen Informationen als Array- Elemente : Laufwerk inode inode protection mode Anzahl der Links Benutzer ID des Inhabers Gruppen ID des Inhabers Laufwerkstyp wenn Inode-Laufwerk * Größe in Bytes ...
PHP Manual
[ stat php.net ]

PHP Funktion
stream_select ( phplist Code 22% Relevanz )
Rubrik
Stream Functions
Kurzform
stream_select -- Runs the equivalent of the select() system call on the given arrays of streams with a timeout specified by tv_sec and tv_usec
Vorschau
...stream_select stream_select (PHP 4 >= 4.3.0, PHP 5) stream_select -- Runs the equivalent of the select() system call on the given arrays of streams with a timeout specified by tv_sec and tv_usec Description int stream_select ( array &read, array &write, array &except, int tv_sec [, int tv_usec] ) The stream_select() function accepts arrays of...
PHP Manual
[ stream_select php.net ]

PHP Funktion
trim ( phplist Code 22% Relevanz )
Rubrik
String-Funktionen
Kurzform
trim -- Entfernt Whitespaces (oder andere Zeichen) am Anfang und Ende eines Strings
Vorschau
... besteht aus mehreren Wörtern :)" // Trimmen der ASCII Steuerzeichen an Anfang und Ende von $binary // (inklusive der Zeichen von ASCII 0 bis 31) $clean = trim ( $binary , "\x00..\x1F" ); ?> Beispiel 2. Trimmen von Array Werten mittels trim() <?php function trim_value (& $value ) { $value = trim ( $value ); } $fruechte = array( 'Apfel' , 'Banane ' , ' Preiselbeere ' ); var_dump ( $fruechte ); array_walk ( $fruechte , 'trim_value...
PHP Manual
[ trim php.net ]

PHP Funktion
xslt_set_error_handler ( phplist Code 22% Relevanz )
Rubrik
XSLT Funktionen
Kurzform
xslt_set_error_handler -- Set an error handler for a XSLT processor
Vorschau
...will be called whenever an error occurs in the XSLT transformation (this function is also called for notices). The user function needs to accept four parameters: the XSLT processor, the error level, the error code and an array of messages. The function can be shown as: error_handler ( resource xh, int error_level, int error_code, array messages ) Beispiele Beispiel 1. xslt_set_error_handler() Example <?php // Our XSLT error handler function ...
PHP Manual
[ xslt_set_error_handler php.net ]

PHP Funktion
yaz_ccl_parse ( phplist Code 22% Relevanz )
Rubrik
YAZ Functions
Kurzform
yaz_ccl_parse -- Invoke CCL Parser
Vorschau
...yaz_ccl_parse yaz_ccl_parse (PHP 4 >= 4.0.5, PECL) yaz_ccl_parse -- Invoke CCL Parser Beschreibung bool yaz_ccl_parse ( resource id, string query, array &result ) This function invokes a CCL parser. It converts a given CCL FIND query to an RPN query which may be passed to the yaz_search() function to perform a search. To define a set of valid CCL fields call ...
PHP Manual
[ yaz_ccl_parse php.net ]

PHP Funktion
Rückgabewerte ( phplist Code 22% Relevanz )
Rubrik
Funktionen
Kurzform
-----
Vorschau
...zahl; } echo quadrat (4); // gibt '16' aus. Es ist nicht möglich, mehrere Werte von einer Funktion zugeben. Ein ähnliches Resultat kann man aber durch die Rückgabe von Listen erreichen. function kleine_zahlen() { return array (0, 1, 2); } list ($null, $eins, $zwei) = kleine_zahlen(); Um von einer Funktion eine Referenz zugeben, müssen Sie den Referenz-Operator & sowohl in der Funktionsdeklaration, als auch bei der Zuweisung des gegebenen ...
PHP Manual
[ Rückgabewerte php.net ]

PHP Funktion
Boolscher Typ ( phplist Code 22% Relevanz )
Rubrik
Typen
Kurzform
-----
Vorschau
...änderung . Bei der Umwandlung nach boolean werden folgende Werte als FALSE angesehen: das boolean FALSE selbst die Integer 0 (Null) die Fließkomma-Zahl 0.0 (Null) die leere Zeichenkette und die Zeichenkette "0" ein Array ohne Elemente ein Objekt ohne Mitgliedsvariablen der spezielle Typ NULL (einschließlich nicht definierter Variablen) Jeder andere Wert wird als TRUE angesehen (einschließlich jeder Resource ). Warnung -1 wird als TRUE ...
PHP Manual
[ Boolscher Typ php.net ]

PHP Funktion
add_next_index_binaryl ( phplist Code 22% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
int add_next_index_binaryl ( zval* arg char* str uint length int duplicate ) ...
Vorschau
...add_next_index_binaryl add_next_index_binaryl add_next_index_binaryl -- Add binary safe binary_string value to assoc array using next free numeric index Beschreibung #include <zend_API.h> int add_next_index_binaryl ( zval* arg, char* str, uint length, int duplicate ) ... Parameter Liste arg ... str ... length ... duplicate ... R...
PHP Manual
[ add_next_index_binaryl php.net ]

PHP Funktion
apc_cache_info ( phplist Code 21% Relevanz )
Rubrik
Alternative PHP Cache
Kurzform
apc_cache_info -- Retrieves cached information (and meta-data) from APC's data store
Vorschau
...apc_cache_info apc_cache_info (PECL) apc_cache_info -- Retrieves cached information (and meta-data) from APC's data store Beschreibung array apc_cache_info ( [string cache_type [, bool limited]] ) Rückgabewerte Array of cached data (and meta-data), or FALSE on failure Anmerkung: apc_cache_info() will raise a warning if it is unable to retrieve APC cache data. This typically occurs when APC is not enabled. Parameter Liste cache_type ...
PHP Manual
[ apc_cache_info php.net ]

PHP Funktion
dns_get_record ( phplist Code 21% Relevanz )
Rubrik
Netzwerk Funktionen
Kurzform
dns_get_record -- Fetch DNS Resource Records associated with a hostname
Vorschau
...dns_get_record dns_get_record (PHP 5) dns_get_record -- Fetch DNS Resource Records associated with a hostname Description array dns_get_record ( string hostname [, int type [, array &authns, array &addtl]] ) Anmerkung: This function is not implemented on Windows platforms, nor does it (currently) work on *BSD systems. Try the PEAR class Net_DNS . This function returns an array of associative arrays. Each ...
PHP Manual
[ dns_get_record php.net ]

PHP Funktion
enchant_broker_describe ( phplist Code 21% Relevanz )
Rubrik
enchant Functions
Kurzform
enchant_broker_describe -- Enumerates the Enchant providers
Vorschau
...enchant_broker_describe enchant_broker_describe (PECL) enchant_broker_describe -- Enumerates the Enchant providers Beschreibung array enchant_broker_describe ( resource broker ) Enumerates the Enchant providers and tells you some rudimentary information about them. The same info is provided through phpinfo(). Parameter Liste broker Broker resource Rü...
PHP Manual
[ enchant_broker_describe php.net ]

PHP Funktion
exif_read_data ( phplist Code 21% Relevanz )
Rubrik
Exif Funktionen
Kurzform
exif_read_data -- Liest die EXIF-Header von JPEG oder TIFF aus.
Vorschau
...exif_read_data exif_read_data (PHP 4 >= 4.2.0, PHP 5) exif_read_data -- Liest die EXIF -Header von JPEG oder TIFF aus. Beschreibung array exif_read_data ( string filename [, string sections [, bool arrays [, bool thumbnail]]] ) exif_read_data() liest die EXIF -Header aus einer JPEG - oder TIFF -Bilddatei aus. Auf diese Weise kann man die Metadaten auslesen, die mit Digitalkameras erzeugt wurden. Exif-Header kommen ...
PHP Manual
[ exif_read_data php.net ]

PHP Funktion
get_class_vars ( phplist Code 21% Relevanz )
Rubrik
Klassen- und Objekt-Funktionen
Kurzform
get_class_vars -- Liefert die Standard-Elemente einer Klasse
Vorschau
...get_class_vars get_class_vars (PHP 4, PHP 5) get_class_vars -- Liefert die Standard-Elemente einer Klasse Beschreibung array get_class_vars ( string class_name ) Diese Funktion liefert ein String-Array , das mit den Standard-Elementen der Klasse class_name gefüllt ist. Standard-Elemente sind all die Elemente, die bereits in der Klassendefinition mit 'var' definiert wurden. get_class_methods get_class...
PHP Manual
[ get_class_vars php.net ]

PHP Funktion
http_post_data ( phplist Code 21% Relevanz )
Rubrik
HTTP Funktionen
Kurzform
http_post_data -- Perform POST request with pre-encoded data
Vorschau
...http_post_data http_post_data (PECL) http_post_data -- Perform POST request with pre-encoded data Beschreibung string http_post_data ( string url [, string data [, array options [, array &info]]] ) Performs an HTTP POST request on the supplied url. See http_get() for a full list of available parameters and options . Parameter Liste url URL data String containing the pre-encoded post data options...
PHP Manual
[ http_post_data php.net ]

PHP Funktion
hw_api->insertanchor ( phplist Code 21% Relevanz )
Rubrik
Hyperwave API Functions
Kurzform
hw_api->insertanchor -- Inserts a new object of type anchor
Vorschau
....hwapi-insertcollection.html"> hw_api->insertanchor (no version information, might be only in CVS) hw_api->insertanchor -- Inserts a new object of type anchor Description hw_api_object hw_api->insertanchor ( array parameter ) This function is a shortcut for hwapi_insert() . It inserts an object of type anchor and sets some of the attributes required for an anchor. The parameter array contains the required elements 'object' and '...
PHP Manual
[ hw_api->insertanchor php.net ]

PHP Funktion
imap_get_quota ( phplist Code 21% Relevanz )
Rubrik
IMAP POP3 und NNTP Funktionen
Kurzform
imap_get_quota -- Retrieve the quota level settings and usage statics per mailbox
Vorschau
...imap_get_quota imap_get_quota (PHP 4 >= 4.0.5, PHP 5) imap_get_quota -- Retrieve the quota level settings, and usage statics per mailbox Description array imap_get_quota ( resource imap_stream, string quota_root ) Returns an array with integer values limit and usage for the given mailbox. The value of limit represents the total amount of space allowed for this mailbox. The...
PHP Manual
[ imap_get_quota php.net ]

PHP Funktion
m_completeauthorizations ( phplist Code 21% Relevanz )
Rubrik
MCVE (Monetra) Payment Functions
Kurzform
m_completeauthorizations -- Number of complete authorizations in queue returning an array of their identifiers
Vorschau
...m_completeauthorizations m_completeauthorizations (PHP 4 >= 4.3.9, PHP 5) m_completeauthorizations -- Number of complete authorizations in queue, returning an array of their identifiers Beschreibung int m_completeauthorizations ( resource conn, int &array ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. Parameter Liste...
PHP Manual
[ m_completeauthorizations php.net ]

PHP Funktion
m_responsekeys ( phplist Code 21% Relevanz )
Rubrik
MCVE (Monetra) Payment Functions
Kurzform
m_responsekeys -- Returns array of strings which represents the keys that can be used for response parameters on this transaction
Vorschau
...m_responsekeys m_responsekeys (PHP 5 >= 5.1.0RC1) m_responsekeys -- Returns array of strings which represents the keys that can be used for response parameters on this transaction Beschreibung array m_responsekeys ( resource conn, int identifier ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. Parameter Liste conn Its description identifier Its ...
PHP Manual
[ m_responsekeys php.net ]

PHP Funktion
ora_fetch_into ( phplist Code 21% Relevanz )
Rubrik
Oracle Funktionen [veraltet]
Kurzform
ora_fetch_into -- Ruft einen Datensatz in ein angegebenes Ergebnisarray ab
Vorschau
...ora_fetch_into ora_fetch_into (PHP 3, PHP 4, PHP 5 <= 5.1.0RC1) ora_fetch_into -- Ruft einen Datensatz in ein angegebenes Ergebnisarray ab Beschreibung int ora_fetch_into ( resource Cursor, array &Ergebnis [, int Flags] ) Ruft einen Datensatz in ein Array ab. Der Parameter flags kann zwei Flag-Werte annehmen: ist das ORA_FETCHINTO_NULLS -Flag gesetzt, werden Felder mit dem Wert NULL im Array gesetzt; ist das ...
PHP Manual
[ ora_fetch_into php.net ]

PHP Funktion
parse_ini_file ( phplist Code 21% Relevanz )
Rubrik
Funktionen des Dateisystems
Kurzform
parse_ini_file -- Analysiert eine Konfigurationsdatei
Vorschau
...parse_ini_file parse_ini_file (PHP 4, PHP 5) parse_ini_file -- Analysiert eine Konfigurationsdatei Beschreibung array parse_ini_file ( string filename [, bool process_sections] ) parse_ini_file() lädt die in filename angegebene Datei, und gibt die darin enthaltenen Einstellungen in einem assoziativen Array . Setzen Sie den letzten ...
PHP Manual
[ parse_ini_file php.net ]

PHP Funktion
parsekit_compile_string ( phplist Code 21% Relevanz )
Rubrik
Parsekit Functions
Kurzform
parsekit_compile_string -- Compile a string of PHP code and return the resulting op array
Vorschau
...parsekit_compile_string parsekit_compile_string (PECL) parsekit_compile_string -- Compile a string of PHP code and return the resulting op array Beschreibung array parsekit_compile_string ( string phpcode [, array &errors [, int options]] ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkündigung ändern. Seien ...
PHP Manual
[ parsekit_compile_string php.net ]

PHP Funktion
posix_getgrnam ( phplist Code 21% Relevanz )
Rubrik
POSIX Funktionen
Kurzform
posix_getgrnam -- Liefert zu einem Gruppennamen Informationen über diese Gruppe
Vorschau
...posix_getgrnam posix_getgrnam (PHP 3 >= 3.0.13, PHP 4, PHP 5) posix_getgrnam -- Liefert zu einem Gruppennamen Informationen über diese Gruppe Beschreibung array posix_getgrnam ( string Gruppenname ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. posix_getgrgid posix_getgroups...
PHP Manual
[ posix_getgrnam php.net ]

PHP Funktion
preg_match_all ( phplist Code 21% Relevanz )
Rubrik
Reguläre Ausdrücke Funktionen (Perl-kompatibel)
Kurzform
preg_match_all -- Führt eine umfassende Suche nach Übereinstimmungen mit regulärem Ausdruck durch
Vorschau
...preg_match_all (PHP 3 >= 3.0.9, PHP 4, PHP 5) preg_match_all -- Führt eine umfassende Suche nach Übereinstimmungen mit regulärem Ausdruck durch Beschreibung int preg_match_all ( string Suchmuster, string Zeichenkette, array &Treffer [, int Flags [, int Versatz]] ) Durchsucht Zeichenkette nach allen Übereinstimmungen mit dem in Suchmuster angegebenen regulären Ausdruck und legt sie in der durch Flags festgelegten Reihenfolge in Treffer ...
PHP Manual
[ preg_match_all php.net ]

PHP Funktion
sqlite_current ( phplist Code 21% Relevanz )
Rubrik
SQLite
Kurzform
sqlite_current -- Holt die aktuelle Zeile als Array aus dem Abfrageergebnis.
Vorschau
...sqlite_current sqlite_current (PHP 5) sqlite_current -- Holt die aktuelle Zeile als Array aus dem Abfrageergebnis. Beschreibung array sqlite_current ( resource Ergebnis [, int Ergebnis_Typ [, bool decode_binary]] ) sqlite_current() entspricht sqlite_fetch_array() mit der Ausnahme, dass sie nicht zunächst automatisch auf die nächste Zeile wechselt; es ...
PHP Manual
[ sqlite_current php.net ]

PHP Funktion
stats_kurtosis ( phplist Code 21% Relevanz )
Rubrik
Statistics Functions
Kurzform
stats_kurtosis -- Computes the kurtosis of the data in the array
Vorschau
...stats_kurtosis stats_kurtosis (PECL) stats_kurtosis -- Computes the kurtosis of the data in the array Beschreibung float stats_kurtosis ( array a ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. Parameter Liste a Its description Rückgabewerte What the function returns, first on success, then on ...
PHP Manual
[ stats_kurtosis php.net ]

PHP Funktion
stats_standard_deviation ( phplist Code 21% Relevanz )
Rubrik
Statistics Functions
Kurzform
stats_standard_deviation -- Returns the standard deviation
Vorschau
...stats_standard_deviation stats_standard_deviation (PECL) stats_standard_deviation -- Returns the standard deviation Beschreibung float stats_standard_deviation ( array a [, bool sample] ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. Parameter Liste a Its description sample Its description Rückgabewerte What the function ...
PHP Manual
[ stats_standard_deviation php.net ]

PHP Funktion
str_word_count ( phplist Code 21% Relevanz )
Rubrik
String-Funktionen
Kurzform
str_word_count -- Gibt Informationen über in einem String verwendete Worte zurück
Vorschau
... charlist]] ) Zählt die Wörter in string . Wenn der optionale Parameter format nicht angegeben ist, wird ein Integer mit der Anzahl der gefundenen Wörter gegeben. Falls format angegeben ist, ist der Rückgabewert ein Array, dessen Inhalt von format abhängt. Die möglichen Werte von format und die daraus resultierenden Ausgaben sind unten aufgelistet. Beachten Sie bei der Verwendung dieser Funktion, dass "Wörter" als locale-abhängige Strings...
PHP Manual
[ str_word_count php.net ]

PHP Funktion
stream_wrapper_register ( phplist Code 21% Relevanz )
Rubrik
Stream Functions
Kurzform
stream_wrapper_register -- Register a URL wrapper implemented as a PHP class
Vorschau
... in your stream but not yet stored it into the underlying storage, you should do so now. Return TRUE if the cached data was successfully stored (or if there was no data to store), or FALSE if the data could not be stored. array stream_stat ( void ) This method is called in response to fstat() calls on the stream and should return an array containing the same values as appropriate for the stream. bool unlink ( string path ) This method is ...
PHP Manual
[ stream_wrapper_register php.net ]

PHP Funktion
Vordefinierte Variablen ( phplist Code 21% Relevanz )
Rubrik
Variablen
Kurzform
-----
Vorschau
...-Eintrag für register_globals , das Sicherheitskapitel über die Verwendung von Register Globals und außerdem die PHP 4.1.0 und 4.2.0 Release Announcements. Die reservierten vordefinierten Variablen, wie die Superglobalen Arrays , sollten bevorzugt verwendet werden. Ab Version 4.1.0 stehen in PHP eine zusätzliche Reihe vordefinierter Arrays zur Verfügung, die Variablen vom Webserver (gegebenenfalls), von der Umgebung und von Benutzereingaben ...
PHP Manual
[ Vordefinierte Variablen php.net ]

PHP Funktion
Vordefinierte Variablen ( phplist Code 21% Relevanz )
Rubrik
Reservierte Wörter in PHP
Kurzform
-----
Vorschau
... Seit PHP 4.1.0 wird empfohlen, externe Variablen über die Superglobals, die unten beschrieben werden, abzufragen. Davor war man entweder auf die register_globals -Einstelliung oder die Langformen der vordefinierten PHP-Arrays ( $HTTP_*_VARS ) angewiesen. Seit PHP 5.0.0 können Sie dieRegistrierung der langen von PHP vordefinierten Arrays mit der Konfigurationsoption register_long_arrays abschalten. Server Variablen: $_SERVER Anmerkung: Dieses ...
PHP Manual
[ Vordefinierte Variablen php.net ]

PHP Funktion
Runkit_Sandbox ( phplist Code 21% Relevanz )
Rubrik
runkit Functions
Kurzform
Runkit_Sandbox -- Runkit Sandbox Class -- PHP Virtual Machine
Vorschau
... with PHP 5.1 or speciallypatched versions of PHP 5.0 and requires that thread safety be enabled.See the README file included in the runkit package for more information. Constructor void Runkit_Sandbox::__construct ( [array options] ) options is an associative array containing any combination of the special ini options listed below. safe_mode If the outer script which is instantiating the Runkit_Sandbox class is configured with safe_mode...
PHP Manual
[ Runkit_Sandbox php.net ]

PHP Funktion
add_assoc_bool ( phplist Code 21% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
int add_assoc_bool ( zval* arg char* key int b ) ...
Vorschau
...add_assoc_bool add_assoc_bool add_assoc_bool -- Add a bool value to an assoc array Beschreibung #include <zend_API.h> int add_assoc_bool ( zval* arg, char* key, int b ) ... Parameter Liste arg ... key ... b ... Rückgabewerte ... add_assoc_bool_ex add_assoc_double_ex...
PHP Manual
[ add_assoc_bool php.net ]

PHP Funktion
add_assoc_long ( phplist Code 21% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
int add_assoc_long ( zval* arg char* key long n ) ...
Vorschau
...add_assoc_long add_assoc_long add_assoc_long -- Add a long value to an assoc array Beschreibung #include <zend_API.h> int add_assoc_long ( zval* arg, char* key, long n ) ... Parameter Liste arg ... key ... n ... Rückgabewerte ... add_assoc_long_ex add_assoc_null_ex...
PHP Manual
[ add_assoc_long php.net ]

PHP Funktion
add_assoc_null ( phplist Code 21% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
int add_assoc_null ( zval* arg char* key ) ...
Vorschau
...add_assoc_null add_assoc_null add_assoc_null -- Add a null value to an assoc array Beschreibung #include <zend_API.h> int add_assoc_null ( zval* arg, char* key ) ... Parameter Liste arg ... key ... Rückgabewerte ... add_assoc_null_ex add_assoc_resource_ex...
PHP Manual
[ add_assoc_null php.net ]

PHP Funktion
add_assoc_zval ( phplist Code 21% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
int add_assoc_zval ( zval* arg char* key zval* value ) ...
Vorschau
...add_assoc_zval add_assoc_zval add_assoc_zval -- Add a zval value to an assoc array Beschreibung #include <zend_API.h> int add_assoc_zval ( zval* arg, char* key, zval* value ) ... Parameter Liste arg ... key ... value ... Rückgabewerte ... add_assoc_zval_ex add_get_assoc_string_ex...
PHP Manual
[ add_assoc_zval php.net ]

PHP Funktion
add_index_zval ( phplist Code 21% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
int add_index_zval ( zval* arg ulong index zval* value ) ...
Vorschau
...add_index_zval add_index_zval add_index_zval -- Add zval value to assoc array using numeric index Beschreibung #include <zend_API.h> int add_index_zval ( zval* arg, ulong index, zval* value ) ... Parameter Liste arg ... index ... value ... Rückgabewerte ... add_index_unset ...
PHP Manual
[ add_index_zval php.net ]

PHP Funktion
add_next_index_resource ( phplist Code 21% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
int add_next_index_resource ( zval* arg int r ) ...
Vorschau
...add_next_index_resource add_next_index_resource add_next_index_resource -- Add resource value to assoc array using next free numeric index Beschreibung #include <zend_API.h> int add_next_index_resource ( zval* arg, int r ) ... Parameter Liste arg ... r ... Rückgabewerte ... add_next_index_null ...
PHP Manual
[ add_next_index_resource php.net ]

PHP Funktion
Extension Kategorisierung ( phplist Code 20% Relevanz )
Rubrik
Anhang
Kurzform
-----
Vorschau
... Zweck Zugehörigkeit Status DieserAnhang kategorisiert über 150 im PHP Handbuch dokumentierte Extensionsnach verschiedenen Krierien. Zweck Elementare PHP Extensions Variablen- und typbezogene Extensions Verweis V, Array Funktionen Verweis XIII, Classkit Functions Verweis XII, Klassen- und Objekt-Funktionen Verweis XVII, Character type functions Verweis XLI, Filter Functions Verweis XLVII, Function Handling functions Verweis CII, Object ...
PHP Manual
[ Extension Kategorisierung php.net ]

PHP Funktion
PHP auf der Kommandozeile ( phplist Code 20% Relevanz )
Rubrik
Features
Kurzform
-----
Vorschau
... viel längere Ausführungszeit zu beanspruchen. register_argc_argv TRUE Weil diese Einstellung auf TRUE gesetzt ist, werden Sie immer Zugriff auf argc (Anzahl der Argumente, die der Anwendung übergeben wurden) und argv (Array der eigentlichen Argumente) im CLI SAPI haben. Seit PHP 4.3.0 werden die PHP-Variablen $argc und $argv registriert und mit den entsprechenden Werten gefüllt, wenn das CLI SAPI benutzt wird. Vor dieser Version verhielt ...
PHP Manual
[ PHP auf der Kommandozeile php.net ]

PHP Funktion
classkit_import ( phplist Code 20% Relevanz )
Rubrik
Classkit Functions
Kurzform
classkit_import -- Import new class method definitions from a file
Vorschau
...classkit_import classkit_import (PECL) classkit_import -- Import new class method definitions from a file Beschreibung array classkit_import ( string filename ) Anmerkung: This function cannotbe used to manipulate the currently running (or chained) method. Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und ...
PHP Manual
[ classkit_import php.net ]

PHP Funktion
create_function ( phplist Code 20% Relevanz )
Rubrik
Function Handling functions
Kurzform
create_function -- Erzeugen einer anonymen / temporären (Lambda-Stil) Funktion
Vorschau
...a^2 = ".$b*sqrt($a);} else {return false;}'; $f2 = "return \"min(b^2+a, a^2,b) = \".min(\$a*\$a+\$b,\$b*\$b+\$a);"; $f3 = 'if ($a > 0 && $b != 0) {return "ln(a)/b = ".log($a)/$b;} else {return false;}'; $farr = array( create_function('$x,$y', 'return "als trig: ".(sin($x) + $x*cos($y));'), create_function('$x,$y', 'return "als Hypotenuse: ".sqrt($x*$x + $y*$y);'), create_function('$a,$b', $f1), create_function('$a,$b', $f2), ...
PHP Manual
[ create_function php.net ]

PHP Funktion
db2_server_info ( phplist Code 20% Relevanz )
Rubrik
IBM DB2 Cloudscape and Apache Derby Functions
Kurzform
db2_server_info -- Returns an object with properties that describe the DB2 database server
Vorschau
.... Explicit commits and rollbacks are not allowed. IDENTIFIER_QUOTE_CHAR string The character used to delimit an identifier. INST_NAME string The instance on the database server that contains the database. ISOLATION_OPTION array An array of the isolation options supported by the database server. The isolation options are described in the DFT_ISOLATION property. KEYWORDS array An array of the keywords reserved by the database server. ...
PHP Manual
[ db2_server_info php.net ]

PHP Funktion
enchant_broker_list_dicts ( phplist Code 20% Relevanz )
Rubrik
enchant Functions
Kurzform
enchant_broker_list_dicts -- Returns a list of available dictionaries
Vorschau
... 1. List all available dictionaries for one broker <?php $r = enchant_broker_init (); $dicts = enchant_broker_list_dicts ( $r ); print_r ( $dicts ); ?> Das oben gezeigte Beispiel erzeugteine ähnliche Ausgabe wie: Array( [0] => Array ( [lang_tag] => de [provider_name] => aspell [provider_desc] => Aspell Provider [provider_file] => /usr/lib/enchant/libenchant_aspell.so ) [1] => Array ( [lang_tag] => de_DE [...
PHP Manual
[ enchant_broker_list_dicts php.net ]

PHP Funktion
eregi ( phplist Code 20% Relevanz )
Rubrik
Reguläre Ausdrücke Funktionen (POSIX erweitert)
Kurzform
eregi -- Sucht Übereinstimmung mit regulärem Ausdruck ohne Berücksichtigung von Groß-/Kleinschreibung
Vorschau
...eregi eregi (PHP 3, PHP 4, PHP 5) eregi -- Sucht Übereinstimmung mit regulärem Ausdruck ohne Berücksichtigung von Groß-/Kleinschreibung Beschreibung int eregi ( string Suchmuster, string Zeichenkette [, array &regs] ) Diese Funktion entspricht ereg() mit dem Unterschied, dass sie übereinstimmende Buchstaben nicht nach Groß- und Kleinschreibung unterscheidet. Beispiel 1. eregi() Beispiel <?php $string = 'XYZ' ; if ( ...
PHP Manual
[ eregi php.net ]

PHP Funktion
fstat ( phplist Code 20% Relevanz )
Rubrik
Funktionen des Dateisystems
Kurzform
fstat -- Liefert Informationen über eine Datei mit offenem Dateizeiger
Vorschau
...fstat fstat (PHP 4, PHP 5) fstat -- Liefert Informationen über eine Datei mit offenem Dateizeiger Beschreibung array fstat ( resource handle ) Trägt die Statistiken der mittel des Dateizeigers handle geöffneten Datei zusammen. Diese Funktion ist ähnlich der Funktion stat() , außer dass sie mit einem offenen Dateizeiger anstatt eines ...
PHP Manual
[ fstat php.net ]

PHP Funktion
get_object_vars ( phplist Code 20% Relevanz )
Rubrik
Klassen- und Objekt-Funktionen
Kurzform
get_object_vars -- Liefert die Elemente eines Objekts
Vorschau
...get_object_vars get_object_vars (PHP 4, PHP 5) get_object_vars -- Liefert die Elemente eines Objekts Beschreibung array get_object_vars ( object obj ) Diese Funktion gibt ein assoziatives Array der für das angegebene Objekt obj definierten Eigenschaften . Wenn Variablen der Klasse, von der obj eine Instanz ist, kein Wert zugewiesen wurde, werden diese nicht im Array gegeben. Beispiel 1. Gebrauch von ...
PHP Manual
[ get_object_vars php.net ]

PHP Funktion
http_put_stream ( phplist Code 20% Relevanz )
Rubrik
HTTP Funktionen
Kurzform
http_put_stream -- Perform PUT request with stream
Vorschau
...http_put_stream http_put_stream (PECL) http_put_stream -- Perform PUT request with stream Beschreibung string http_put_stream ( string url [, resource stream [, array options [, array &info]]] ) Performs an HTTP PUT request on the supplied url. See http_get() for a full list of available parameters and options . Parameter Liste url URL stream The stream to read the PUT request body from ...
PHP Manual
[ http_put_stream php.net ]

PHP Funktion
ibase_fetch_row ( phplist Code 20% Relevanz )
Rubrik
InterBase-Funktionen
Kurzform
ibase_fetch_row -- Liest einen Datensatz aus einer InterBase-Datenbank
Vorschau
...ibase_fetch_row ibase_fetch_row (PHP 3 >= 3.0.6, PHP 4, PHP 5) ibase_fetch_row -- Liest einen Datensatz aus einer InterBase-Datenbank Beschreibung: array ibase_fetch_row ( int result_identifier ) Gibt den nächsten Datensatz des per ibase_query() gewonnenen Zeigers in einem Array . ibase_fetch_object ibase_field_info...
PHP Manual
[ ibase_fetch_row php.net ]

PHP Funktion
imap_headerinfo ( phplist Code 20% Relevanz )
Rubrik
IMAP POP3 und NNTP Funktionen
Kurzform
imap_headerinfo -- Read the header of the message
Vorschau
...flagged NOTE that the Recent/Unseen behavior is a little odd. If you want to know if a message is Unseen, you must check for Unseen == 'U' || Recent == 'N' toaddress (full to: line, up to 1024 characters) to[] (returns an array of objects from the To line, containing): personal adl mailbox host fromaddress (full from: line, up to 1024 characters) from[] (returns an array of objects from the From line, containing): personal adl mailbox host ...
PHP Manual
[ imap_headerinfo php.net ]

PHP Funktion
imap_rfc822_parse_adrlist ( phplist Code 20% Relevanz )
Rubrik
IMAP POP3 und NNTP Funktionen
Kurzform
imap_rfc822_parse_adrlist -- Parsen eines Adress-Strings
Vorschau
...imap_rfc822_parse_adrlist imap_rfc822_parse_adrlist (PHP 3 >= 3.0.2, PHP 4, PHP 5) imap_rfc822_parse_adrlist -- Parsen eines Adress-Strings Beschreibung array imap_rfc822_parse_adrlist ( string address, string default_host ) Diese Funktion zerlegt einen Adress-String gemäß RFC822 und liefert ein Array von Objekten mit einem Eintrag je erkannter Adresse. Die Address-Objekte ...
PHP Manual
[ imap_rfc822_parse_adrlist php.net ]

PHP Funktion
ksort ( phplist Code 20% Relevanz )
Rubrik
Array Funktionen
Kurzform
ksort -- Sortiert ein Array nach Schlüsseln
Vorschau
...ksort ksort (PHP 3, PHP 4, PHP 5) ksort -- Sortiert ein Array nach Schlüsseln Beschreibung bool ksort ( array &array [, int sort_flags] ) Sortiert ein Array nach Schlüsseln, wobei die Zuordnungen zwischen Schlüssel und Wert erhalten bleiben. Dies ist hauptsächlich bei assoziativen Arrays hilfreich. Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Beispiel 1. ksort() <?php $...
PHP Manual
[ ksort php.net ]

PHP Funktion
ldap_get_values ( phplist Code 20% Relevanz )
Rubrik
LDAP Funktionen
Kurzform
ldap_get_values -- Liefert alle Werte eines Ergebnis-Eintrags
Vorschau
...ldap_get_values ldap_get_values (PHP 3, PHP 4, PHP 5) ldap_get_values -- Liefert alle Werte eines Ergebnis-Eintrags Beschreibung array ldap_get_values ( resource Verbindungs-Kennung, resource Ergebnis-Eintrag-Kennung, string merkmal ) Rückgabewert: im Erfolgsfall ein Array der Werte des Merkmals, FALSE im Fehlerfall. Die ldap_get_values() Funktion wird...
PHP Manual
[ ldap_get_values php.net ]

PHP Funktion
lstat ( phplist Code 20% Relevanz )
Rubrik
Funktionen des Dateisystems
Kurzform
lstat -- Liefert Informationen über eine Datei oder einen symbolischen Link.
Vorschau
...lstat lstat (PHP 3 >= 3.0.4, PHP 4, PHP 5) lstat -- Liefert Informationen über eine Datei oder einen symbolischen Link. Beschreibung array lstat ( string filename ) Ermittelt statistische Informationen über eine Datei oder symbolischen Link, spezifiziert in filename . Diese Funktion ist identisch mit der Funktion stat() , außer dass wenn der Parameter ...
PHP Manual
[ lstat php.net ]

PHP Funktion
maxdb_fetch_row ( phplist Code 20% Relevanz )
Rubrik
MaxDB PHP Extension
Kurzform
maxdb_fetch_row (no version information might be only in CVS)result->fetch_row -- Get a result row as an enumerated array
Vorschau
...maxdb_fetch_row maxdb_fetch_row (PECL) maxdb_fetch_row (no version information, might be only in CVS) result->fetch_row -- Get a result row as an enumerated array Description Procedural style: mixed maxdb_fetch_row ( resource result ) Object oriented style (method): class result { mixed fetch_row ( void ) } Returns an array that corresponds to the fetched row, or NULL if there are...
PHP Manual
[ maxdb_fetch_row php.net ]

PHP Funktion
mb_detect_order ( phplist Code 20% Relevanz )
Rubrik
Multibyte String Functions
Kurzform
mb_detect_order -- Set/Get character encoding detection order
Vorschau
... order Description mixed mb_detect_order ( [mixed encoding_list] ) mb_detect_order() sets automatic character encoding detection order to encoding_list . It returns TRUE for success, FALSE for failure. encoding_list is array or comma separated list of character encoding. ("auto" is expanded to "ASCII, JIS, UTF-8, EUC-JP, SJIS") If encoding_list is omitted, it returns current character encoding detection order as array. This setting affects ...
PHP Manual
[ mb_detect_order php.net ]

PHP Funktion
newt_button_bar ( phplist Code 20% Relevanz )
Rubrik
Newt Functions
Kurzform
newt_button_bar --
Vorschau
...newt_button_bar newt_button_bar (PECL) newt_button_bar -- Beschreibung resource newt_button_bar ( array &buttons ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. Parameter Liste buttons Its description Rückgabewerte What the function returns, first on ...
PHP Manual
[ newt_button_bar php.net ]

PHP Funktion
proc_get_status ( phplist Code 20% Relevanz )
Rubrik
Funktionen zur Programmausführung
Kurzform
proc_get_status -- Get information about a process opened by proc_open()
Vorschau
...proc_get_status proc_get_status (PHP 5) proc_get_status -- Get information about a process opened by proc_open() Beschreibung array proc_get_status ( resource process ) proc_get_status() fetches data about a process opened using proc_open() . Parameter Liste process The proc_open() resource that will be evaluated. Rückgabewerte An array of ...
PHP Manual
[ proc_get_status php.net ]

PHP Funktion
radius_get_attr ( phplist Code 20% Relevanz )
Rubrik
Radius
Kurzform
radius_get_attr -- Extracts an attribute
Vorschau
...() , its attributes can be extracted one by one using radius_get_attr() . Each time radius_get_attr() is called, it gets the next attribute from the current response. Rückgabewerte Returns an associative array containing the attribute-type and the data, or error number <= 0. Beispiele Beispiel 1. radius_get_attr() example <?php while ( $resa = radius_get_attr ( $res )) { if (! is_array ( $resa )) { printf ( "Error ...
PHP Manual
[ radius_get_attr php.net ]

PHP Funktion
rename_function ( phplist Code 20% Relevanz )
Rubrik
Advanced PHP debugger
Kurzform
rename_function -- Renames orig_name to new_name in the global function table
Vorschau
... function. Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Beispiele Beispiel 1. rename_function() example <?php rename_function ( 'mysql_connect' , 'debug_mysql_connect' ); ?> override_function Array Funktionen...
PHP Manual
[ rename_function php.net ]

PHP Funktion
reset ( phplist Code 20% Relevanz )
Rubrik
Array Funktionen
Kurzform
reset -- Setzt den internen Zeiger eines Arrays auf sein erstes Element
Vorschau
...reset reset (PHP 3, PHP 4, PHP 5) reset -- Setzt den internen Zeiger eines Arrays auf sein erstes Element Beschreibung mixed reset ( array &array ) reset() setzt den internen Zeiger von array auf das erste Element, und gibt den Wert des ersten Arrayelements oder FALSE , wenn das Array leer ist, . Beispiel 1. reset() Beispiel <?php $array = array( 'Schritt eins' , 'Schritt zwei' , 'Schritt drei' , 'Schritt ...
PHP Manual
[ reset php.net ]

PHP Funktion
sesam_fetch_row ( phplist Code 20% Relevanz )
Rubrik
SESAM Datenbankfunktionen
Kurzform
sesam_fetch_row -- Lesen einer Zeile als Array
Vorschau
...sesam_fetch_row sesam_fetch_row (PHP 3 CVS only) sesam_fetch_row -- Lesen einer Zeile als Array Beschreibung array sesam_fetch_row ( string result_id [, int whence [, int offset]] ) Liefert ein Array entsprechend der gelesenen Zeile oder FALSE nach de letzten gefundenen Zeile. Die Anzahl der Spalten im Ausgabesatz wird als Element des assoziativen Arrays $array["count"] geliefert. Da Ergebnisspalten auch leer sein kö...
PHP Manual
[ sesam_fetch_row php.net ]

PHP Funktion
session_get_cookie_params ( phplist Code 20% Relevanz )
Rubrik
Session Funktionen
Kurzform
session_get_cookie_params -- Liefert die Session-Cookie Parameter
Vorschau
...session_get_cookie_params session_get_cookie_params (PHP 4, PHP 5) session_get_cookie_params -- Liefert die Session-Cookie Parameter Beschreibung array session_get_cookie_params ( void ) Die Funktion session_get_cookie_params() gibt ein Array mit der Information des aktuellen Session-Cookies . Das Array enthält folgende Elemente: "lifetime" - Die Lebensdauer des Cookies...
PHP Manual
[ session_get_cookie_params php.net ]

PHP Funktion
stream_context_set_params ( phplist Code 20% Relevanz )
Rubrik
Stream Functions
Kurzform
stream_context_set_params -- Set parameters for a stream/wrapper/context
Vorschau
... stream_context_set_params (PHP 4 >= 4.3.0, PHP 5) stream_context_set_params -- Set parameters for a stream/wrapper/context Description bool stream_context_set_params ( resource stream_or_context, array params ) params should be an associative array of the structure: $params['paramname'] = "paramvalue"; . Tabelle 1. Parameters Parameters Purpose notification Name of user-defined callback function to be called whenever ...
PHP Manual
[ stream_context_set_params php.net ]

PHP Funktion
tidy_parse_file ( phplist Code 20% Relevanz )
Rubrik
Tidy Functions
Kurzform
tidy_parse_file -- Parse markup in file or URI
Vorschau
...]]] ) Object oriented style: bool tidy->parseFile ( string filename [, mixed config [, string encoding [, bool use_include_path]]] ) This function parses the given file. Den config Parameterkönnen Sie entweder als Array oder String übergeben. Bei der Übergabe alsString wird dieser als Name der Konfigurationsdatei interpretiert, bei derÜbergabe als Array als die Optionen selbst. Für möegliche Optionen und derenBedeutung sollten Sie sich ...
PHP Manual
[ tidy_parse_file php.net ]

PHP Funktion
usort ( phplist Code 20% Relevanz )
Rubrik
Array Funktionen
Kurzform
usort -- Sortiert ein Array nach Werten mittels einer benutzerdefinierten Vergleichsfunktion.
Vorschau
...usort usort (PHP 3 >= 3.0.3, PHP 4, PHP 5) usort -- Sortiert ein Array nach Werten mittels einer benutzerdefinierten Vergleichsfunktion. Beschreibung bool usort ( array &array, callback cmp_function ) Diese Funktion sortiert ein Array nach seinen Werten mittels einer benutzerdefinierten Vergleichsfunktion. Soll das Array nach nicht trivialen Kriterien sortiert werden, sollten Sie diese ...
PHP Manual
[ usort php.net ]

PHP Funktion
xmlrpc_is_fault ( phplist Code 20% Relevanz )
Rubrik
XML-RPC Functions
Kurzform
xmlrpc_is_fault -- Determines if an array value represents an XMLRPC fault
Vorschau
...xmlrpc_is_fault xmlrpc_is_fault (PHP 4 >= 4.3.0, PHP 5) xmlrpc_is_fault -- Determines if an array value represents an XMLRPC fault Beschreibung bool xmlrpc_is_fault ( array arg ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkündigung ändern. Seien Sie gewarnt und verwenden ...
PHP Manual
[ xmlrpc_is_fault php.net ]

PHP Funktion
xmlrpc_server_call_method ( phplist Code 20% Relevanz )
Rubrik
XML-RPC Functions
Kurzform
xmlrpc_server_call_method -- Parses XML requests and call methods
Vorschau
... xmlrpc_server_call_method (PHP 4 >= 4.1.0, PHP 5) xmlrpc_server_call_method -- Parses XML requests and call methods Beschreibung string xmlrpc_server_call_method ( resource server, string xml, mixed user_data [, array output_options] ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkündigung ändern. Seien Sie gewarnt und...
PHP Manual
[ xmlrpc_server_call_method php.net ]

PHP Funktion
Typen ( phplist Code 20% Relevanz )
Rubrik
Sprachreferenz
Kurzform
-----
Vorschau
...Typen Kapitel 11. Typen Inhaltsverzeichnis Einführung Boolscher Typ Integer Typen Fließkomma-Zahlenwerte Strings / Zeichenketten Arrays Objekte Resource NULL In dieser Dokumentation verwendete Pseudo-Typen Typen-Tricks Einführung PHP unterstützt acht primitive Typen. Vier skalare Typen: Boolean Integer Fließkomma-Zahl (float) String / Zeichenkette ...
PHP Manual
[ Typen php.net ]

PHP Funktion
Andere Inkompatibilitäten ( phplist Code 20% Relevanz )
Rubrik
Migration von PHP/FI 2.0 zu PHP 3.0
Kurzform
-----
Vorschau
...echo() no longer supports a format string. Use the printf() function instead. In PHP/FI 2.0, an implementation side-effect caused $foo[0] to have the same effect as $foo . This is not TRUE for PHP 3.0. Das Auslesen von Arrays mit $array[] wird nicht mehr unterstützt That is, you cannot traverse an array by having a loop that does $data = $array[] . Use current() and next() instead. Also, $array1[] = $array2 does not append the values of $...
PHP Manual
[ Andere Inkompatibilitäten php.net ]

PHP Funktion
Error reporting ( phplist Code 20% Relevanz )
Rubrik
Migrating from PHP 3 to PHP 4
Kurzform
-----
Vorschau
... 3 didn't. The easy fix is to just turn off E_NOTICE messages, but it is usually a good idea to fix the code instead. The most common case that will now produce notice messages is the use of unquoted string constants as array indices. Both PHP 3 and 4 will fall back to interpret these as strings if no keyword or constant is known by that name, but whenever a constant by that name had been defined anywhere else in the code it might break your ...
PHP Manual
[ Error reporting php.net ]

PHP Funktion
KADM5 ( phplist Code 20% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... KRB5_KDB_NEW_PRINC Constants for Options The functions kadm5_create_principal() , kadm5_modify_principal() , and kadm5_get_principal() allow to specify or return principal's options as an associative array. The keys for the associative array are defined as string constants below: Tabelle 2. Options for creating/modifying/retrieving principals constant funcdef description KADM5_PRINCIPAL long The expire time of the princial ...
PHP Manual
[ KADM5 php.net ]

PHP Funktion
apd_dump_regular_resources ( phplist Code 19% Relevanz )
Rubrik
Advanced PHP debugger
Kurzform
apd_dump_regular_resources -- Return all current regular resources as an array
Vorschau
...apd_dump_regular_resources apd_dump_regular_resources (no version information, might be only in CVS) apd_dump_regular_resources -- Return all current regular resources as an array Beschreibung array apd_dump_regular_resources ( void ) Return all current regular resources as an array. Rückgabewerte An array containing the current regular resources. Beispiele Beispiel 1. apd_dump_regular_resources() example <?php...
PHP Manual
[ apd_dump_regular_resources php.net ]

PHP Funktion
dbase_add_record ( phplist Code 19% Relevanz )
Rubrik
dBase Funktionen
Kurzform
dbase_add_record -- Hängt einen neuen Datensatz an eine dBase-Datenbank an
Vorschau
...dbase_add_record dbase_add_record (PHP 3, PHP 4, PHP 5) dbase_add_record -- Hängt einen neuen Datensatz an eine dBase-Datenbank an Beschreibung: bool dbase_add_record ( int dbase_identifier, array record ) Hängt den per record definierten Datensatz an die Datenbank an. Wenn die Anzahl der Einträge im angegebenen Record nicht gleich der Anzahl der Felder in der Datenbank ist, wird dieser Befehl scheitern und FALSE...
PHP Manual
[ dbase_add_record php.net ]

PHP Funktion
get_defined_vars ( phplist Code 19% Relevanz )
Rubrik
Funktionen zur Behandlung von Variablen
Kurzform
get_defined_vars -- Gibt ein Array aller definierten Variablen zurück
Vorschau
...get_defined_vars get_defined_vars (PHP 4 >= 4.0.4, PHP 5) get_defined_vars -- Gibt ein Array aller definierten Variablen Beschreibung array get_defined_vars ( void ) Diese Funktion gibt ein mehrdimensionales Array mit einer Liste aller definierten Variablen, seien sie aus der Umgebung, Server-Variablen oder benutzerdefiniert, innerhalb des Zugriffsbereichs, in dem get_defined_vars() aufgerufen wird, . Rückgabewerte Ein ...
PHP Manual
[ get_defined_vars php.net ]

PHP Funktion
http_build_query ( phplist Code 19% Relevanz )
Rubrik
URL Funktionen
Kurzform
http_build_query -- Erstellen eines URL-kodierten Query-Strings
Vorschau
...http_build_query http_build_query (PHP 5) http_build_query -- Erstellen eines URL-kodierten Query-Strings Description string http_build_query ( array formdata [, string numeric_prefix [, string arg_separator]] ) Erstellt einen URL-kodierten Query-String aus einem gegebenen assoziativem (oder indexiertem) Array. formdata kann ein Array oder ein Objekt sein, das ...
PHP Manual
[ http_build_query php.net ]

PHP Funktion
hw_GetAnchorsObj ( phplist Code 19% Relevanz )
Rubrik
Hyperwave Functions
Kurzform
hw_GetAnchorsObj -- Object records of anchors of document
Vorschau
...hw_GetAnchorsObj hw_GetAnchorsObj (PHP 3 >= 3.0.3, PHP 4, PECL) hw_GetAnchorsObj -- Object records of anchors of document Description array hw_getanchorsobj ( int connection, int objectID ) Returns an array of object records with anchors of the document with object ID objectID . hw_GetAnchors hw_GetAndLock...
PHP Manual
[ hw_GetAnchorsObj php.net ]

PHP Funktion
hw_GetParentsObj ( phplist Code 19% Relevanz )
Rubrik
Hyperwave Functions
Kurzform
hw_GetParentsObj -- Object records of parents
Vorschau
...hw_GetParentsObj hw_GetParentsObj (PHP 3 >= 3.0.3, PHP 4, PECL) hw_GetParentsObj -- Object records of parents Description array hw_getparentsobj ( int connection, int objectID ) Returns an indexed array of object records plus an associated array with statistical information about the object records. The associated array is the last entry of the returned array. Each object record belongs to a parent of the object with ID ...
PHP Manual
[ hw_GetParentsObj php.net ]

PHP Funktion
hw_insertanchors ( phplist Code 19% Relevanz )
Rubrik
Hyperwave Functions
Kurzform
hw_insertanchors -- Inserts only anchors into text
Vorschau
...hw_insertanchors hw_insertanchors (PHP 4 >= 4.0.4, PECL) hw_insertanchors -- Inserts only anchors into text Description bool hw_insertanchors ( int hwdoc, array anchorecs, array dest [, array urlprefixes] ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. hw_InsDoc hw_InsertDocument...
PHP Manual
[ hw_insertanchors php.net ]

PHP Funktion
hw_api->copy ( phplist Code 19% Relevanz )
Rubrik
Hyperwave API Functions
Kurzform
hw_api->copy -- Copies physically
Vorschau
...="function.hwapi-content.html"> dbstat"HREF="function.hwapi-dbstat.html"> hw_api->copy (no version information, might be only in CVS) hw_api->copy -- Copies physically Description hw_api_object hw_api->copy ( array parameter ) This function will make a physical copy including the content if it exists and returns the new object or an error object. The parameter array contains the required elements 'objectIdentifier' and '...
PHP Manual
[ hw_api->copy php.net ]

PHP Funktion
hw_api->dstofsrcanchor ( phplist Code 19% Relevanz )
Rubrik
Hyperwave API Functions
Kurzform
hw_api->dstofsrcanchor -- Returns destination of a source anchor
Vorschau
...-error-count.html"> hw_api->dstofsrcanchor (no version information, might be only in CVS) hw_api->dstofsrcanchor -- Returns destination of a source anchor Description hw_api_object hw_api->dstofsrcanchor ( array parameter ) Retrieves the destination object pointed by the specified source anchors. The destination object can either be a destination anchor or a whole document. The parameters array contains the required element '...
PHP Manual
[ hw_api->dstofsrcanchor php.net ]

PHP Funktion
hw_api->user ( phplist Code 19% Relevanz )
Rubrik
Hyperwave API Functions
Kurzform
hw_api->user -- Returns the own user object
Vorschau
...-unlock.html"> userlist"HREF="function.hwapi-userlist.html"> hw_api->user (no version information, might be only in CVS) hw_api->user -- Returns the own user object Description hw_api_object hw_api->user ( array parameter ) See also hwapi_userlist() . hw_api->unlock hw_api->userlist...
PHP Manual
[ hw_api->user php.net ]

PHP Funktion
icap_list_alarms ( phplist Code 19% Relevanz )
Rubrik
ICAP Functions [removed]
Kurzform
icap_list_alarms -- Return a list of events that has an alarm triggered at the given datetime
Vorschau
...icap_list_alarms icap_list_alarms (PHP 4 <= 4.2.3) icap_list_alarms -- Return a list of events that has an alarm triggered at the given datetime Description int icap_list_alarms ( int stream_id, array date, array time ) Returns an array of event ID's that has an alarm going off at the given datetime. icap_list_alarms() function takes in a datetime for a calendar stream. An array of event id's that has an alarm should be going off...
PHP Manual
[ icap_list_alarms php.net ]

PHP Funktion
imap_listmailbox ( phplist Code 19% Relevanz )
Rubrik
IMAP POP3 und NNTP Funktionen
Kurzform
imap_listmailbox -- Liefert eine Liste der Postfach-Namen
Vorschau
...imap_listmailbox imap_listmailbox (PHP 3, PHP 4, PHP 5) imap_listmailbox -- Liefert eine Liste der Postfach-Namen Beschreibung array imap_listmailbox ( int imap_stream, string ref, string pat ) Liefert die Namen der gefundenen Postfächer als String-Array. ref und pat werden in imap_getmailboxes() beschrieben. imap_list imap_listscan...
PHP Manual
[ imap_listmailbox php.net ]

PHP Funktion
imap_scanmailbox ( phplist Code 19% Relevanz )
Rubrik
IMAP POP3 und NNTP Funktionen
Kurzform
imap_scanmailbox -- Druchsucht Postfächer nach einen String
Vorschau
...imap_scanmailbox imap_scanmailbox (PHP 3, PHP 4, PHP 5) imap_scanmailbox -- Druchsucht Postfächer nach einen String Beschreibung array imap_scanmailbox ( int imap_stream, string ref, string pat, string content ) Diese Funktion arbeitet ähnlich wie imap_listmailbox() . Sie gibt aber nur die Namen der Postfächer , in denen irgendwo der Text content ...
PHP Manual
[ imap_scanmailbox php.net ]

PHP Funktion
ingres_fetch_row ( phplist Code 19% Relevanz )
Rubrik
Ingres II Funktionen
Kurzform
ingres_fetch_row -- Holt eine Zeile aus einer Ergebnismenge in ein numerisches Array
Vorschau
...ingres_fetch_row ingres_fetch_row (PHP 4 >= 4.0.2, PHP 5 <= 5.0.4) ingres_fetch_row -- Holt eine Zeile aus einer Ergebnismenge in ein numerisches Array Beschreibung array ingres_fetch_row ( [resource link] ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkündigung ändern. ...
PHP Manual
[ ingres_fetch_row php.net ]

PHP Funktion
ircg_eval_ecmascript_params ( phplist Code 19% Relevanz )
Rubrik
IRC Gateway Funktionen
Kurzform
ircg_eval_ecmascript_params -- Decodes a list of JS-encoded parameters
Vorschau
...ircg_eval_ecmascript_params ircg_eval_ecmascript_params (PHP 4 >= 4.3.0, PHP 5 <= 5.0.4) ircg_eval_ecmascript_params -- Decodes a list of JS-encoded parameters Description array ircg_eval_ecmascript_params ( string params ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. From the ircg_eval_ecmascript_params source file: /* * State 0: ...
PHP Manual
[ ircg_eval_ecmascript_params php.net ]

PHP Funktion
ldap_get_entries ( phplist Code 19% Relevanz )
Rubrik
LDAP Funktionen
Kurzform
ldap_get_entries -- Liefert alle Ergebnis-Einträge
Vorschau
...ldap_get_entries ldap_get_entries (PHP 3, PHP 4, PHP 5) ldap_get_entries -- Liefert alle Ergebnis-Einträge Beschreibung array ldap_get_entries ( resource Verbindungs-Kennung, resource Ergebnis-Kennung ) Rückgabewert: im Erfolgsfall wird die gesamte Information des Ergebnisses in einem multidimensionalen Array gegeben; im Fehlerfall FALSE . Die...
PHP Manual
[ ldap_get_entries php.net ]

PHP Funktion
mailparse_msg_get_part_data ( phplist Code 19% Relevanz )
Rubrik
mailparse Functions
Kurzform
mailparse_msg_get_part_data -- Returns an associative array of info about the message
Vorschau
...mailparse_msg_get_part_data mailparse_msg_get_part_data (4.1.0 - 4.1.2 only, PECL) mailparse_msg_get_part_data -- Returns an associative array of info about the message Beschreibung array mailparse_msg_get_part_data ( resource rfc2045 ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkü...
PHP Manual
[ mailparse_msg_get_part_data php.net ]

PHP Funktion
mailparse_msg_get_structure ( phplist Code 19% Relevanz )
Rubrik
mailparse Functions
Kurzform
mailparse_msg_get_structure -- Returns an array of mime section names in the supplied message
Vorschau
...mailparse_msg_get_structure mailparse_msg_get_structure (4.1.0 - 4.1.2 only, PECL) mailparse_msg_get_structure -- Returns an array of mime section names in the supplied message Beschreibung array mailparse_msg_get_structure ( resource rfc2045 ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkü...
PHP Manual
[ mailparse_msg_get_structure php.net ]

PHP Funktion
mcal_list_alarms ( phplist Code 19% Relevanz )
Rubrik
MCAL Funktionen
Kurzform
mcal_list_alarms -- Return a list of events that has an alarm triggered at the given datetime
Vorschau
...mcal_list_alarms mcal_list_alarms (PHP 3 >= 3.0.13, PHP 4, PECL) mcal_list_alarms -- Return a list of events that has an alarm triggered at the given datetime Description array mcal_list_alarms ( int mcal_stream [, int begin_year [, int begin_month [, int begin_day [, int end_year [, int end_month [, int end_day]]]]]] ) Returns an array of event ID's that has an alarm going off between the ...
PHP Manual
[ mcal_list_alarms php.net ]

PHP Funktion
msession_listvar ( phplist Code 19% Relevanz )
Rubrik
Mohawk Software Session Handler Funktionen
Kurzform
msession_listvar -- Listet Sessions mit Variablen auf
Vorschau
...msession_listvar msession_listvar (PHP 4 >= 4.2.0, PHP 5) msession_listvar -- Listet Sessions mit Variablen auf Beschreibung array msession_listvar ( string name ) Gibt ein assoziatives Array [Wert, Session] für alle Sessions mit einer Variablen namens name . Wird verwendet, um Sessions mit allgemeinen Attributen zu durchsuchen. msession_list msession_lock...
PHP Manual
[ msession_listvar php.net ]

PHP Funktion
ob_iconv_handler ( phplist Code 19% Relevanz )
Rubrik
iconv Funktionen
Kurzform
ob_iconv_handler -- Konvertiert Zeichensatzkodierung als Ausgabepuffer-Handler (output buffer handler)
Vorschau
...ob_iconv_handler ob_iconv_handler (PHP 4 >= 4.0.5, PHP 5) ob_iconv_handler -- Konvertiert Zeichensatzkodierung als Ausgabepuffer-Handler (output buffer handler) Beschreibung array ob_iconv_handler ( string contents, int status ) Die Fumktion konvertiert die in Zeichensatz internal_encoding kodierte Zeichenkette in output_encoding . internal_encoding und output_encoding sollten über die Funktion ...
PHP Manual
[ ob_iconv_handler php.net ]

PHP Funktion
ob_list_handlers ( phplist Code 19% Relevanz )
Rubrik
Funktionen zur Ausgabesteuerung
Kurzform
ob_list_handlers -- List all output handlers in use
Vorschau
...ob_list_handlers ob_list_handlers (PHP 4 >= 4.3.0, PHP 5) ob_list_handlers -- List all output handlers in use Description array ob_list_handlers ( void ) This will return an array with the output handlers in use (if any). If output_buffering is enabled or an anonymous function was used with ob_start() , ob_list_handlers() will return "default output handler". Beispiel 1. ob_list_handlers() example...
PHP Manual
[ ob_list_handlers php.net ]

PHP Funktion
odbc_data_source ( phplist Code 19% Relevanz )
Rubrik
ODBC Funktionen
Kurzform
odbc_data_source -- Returns information about a current connection
Vorschau
...odbc_data_source odbc_data_source (PHP 4 >= 4.3.0, PHP 5) odbc_data_source -- Returns information about a current connection Description array odbc_data_source ( resource connection_id, int fetch_type ) Returns FALSE on error, and an array upon success. This function will return the list of available DNS (after calling it several times). The connection_id is ...
PHP Manual
[ odbc_data_source php.net ]

PHP Funktion
PDO->query() ( phplist Code 19% Relevanz )
Rubrik
PDO-Funktionen
Kurzform
PDO->query() -- Executes an SQL statement returning a result set as a PDOStatement object
Vorschau
... class PDO { PDOStatement query ( string statement ) }class PDO { bool query ( string statement, int PDO::FETCH_COLUMN, int colno ) }class PDO { bool query ( string statement, int PDO::FETCH_CLASS, string classname, array ctorargs ) }class PDO { bool query ( string statement, int PDO::FETCH_INTO, object object ) } PDO->query() executes an SQL statement in a single function call, returning the result set (if any) returned by the ...
PHP Manual
[ PDO->query() php.net ]

PHP Funktion
px_insert_record ( phplist Code 19% Relevanz )
Rubrik
Paradox File Access
Kurzform
px_insert_record -- Inserts record into paradox database
Vorschau
...px_insert_record px_insert_record (PECL) px_insert_record -- Inserts record into paradox database Beschreibung int px_insert_record ( resource pxdoc, array data ) Inserts a new record into the database. The record is not necessarily inserted at the end of the database, but may be inserted at any position depending on where the first free slot is found. The record data is ...
PHP Manual
[ px_insert_record php.net ]

PHP Funktion
sesam_diagnostic ( phplist Code 19% Relevanz )
Rubrik
SESAM Datenbankfunktionen
Kurzform
sesam_diagnostic -- Liefert Status-Informationen über den letzten SESAM-Aufruf
Vorschau
...sesam_diagnostic sesam_diagnostic (PHP 3 CVS only) sesam_diagnostic -- Liefert Status-Informationen über den letzten SESAM-Aufruf Beschreibung array sesam_diagnostic ( void ) Liefert ein assoziatives Array (???) von Status- und Returncodes des letzten SQL- Aktion (Abfrage/Statement(???)/Befehl). Elemente des Arrays sind: Tabelle 1. Von sesam_diagnostic() gelieferte Status Information Element Contents $array["sqlstate"] 5-...
PHP Manual
[ sesam_diagnostic php.net ]

PHP Funktion
session_register ( phplist Code 19% Relevanz )
Rubrik
Session Funktionen
Kurzform
session_register -- Registriert eine oder mehrere globale Variablen in der aktuellen Session
Vorschau
... bool session_register ( mixed Name [, mixed ...] ) session_register() akzeptiert eine variable Anzahl von Argumenten, die jeweils entweder eine Zeichenkette sein können, die den Namen einer Variablen trägt, oder ein Array, das aus solchen Variablennamen oder anderen Arrays besteht. Für jeden Namen registriert session_register() die globale Variable mit diesem Namen in der aktuellen Session. Achtung Wenn Sie wollen, dass ihr Script unabhä...
PHP Manual
[ session_register php.net ]

PHP Funktion
stats_rand_phrase_to_seeds ( phplist Code 19% Relevanz )
Rubrik
Statistics Functions
Kurzform
stats_rand_phrase_to_seeds -- generate two seeds for the RGN random number generator
Vorschau
...stats_rand_phrase_to_seeds stats_rand_phrase_to_seeds (PECL) stats_rand_phrase_to_seeds -- generate two seeds for the RGN random number generator Beschreibung array stats_rand_phrase_to_seeds ( string phrase ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. Parameter Liste phrase Its description Rückgabewerte What the ...
PHP Manual
[ stats_rand_phrase_to_seeds php.net ]

PHP Funktion
timezone_abbreviations_list ( phplist Code 19% Relevanz )
Rubrik
Datums- und Zeit-Funktionen
Kurzform
timezone_abbreviations_list -- Returns associative array containing dst offset and the timezone name
Vorschau
...timezone_abbreviations_list timezone_abbreviations_list (PHP 5 >= 5.1.0RC1) timezone_abbreviations_list -- Returns associative array containing dst, offset and the timezone name Beschreibung array timezone_abbreviations_list ( void ) array DateTimeZone::listAbbreviations ( void ) Rückgabewerte Returns array on success or FALSE on failure. Beispiele Beispiel 1. A timezone_abbreviations_list() example <?php $...
PHP Manual
[ timezone_abbreviations_list php.net ]

PHP Funktion
wddx_deserialize ( phplist Code 19% Relevanz )
Rubrik
WDDX Funktionen
Kurzform
wddx_deserialize -- Deserialisiert ein WDDX Paket
Vorschau
... -- Deserialisiert ein WDDX Paket Beschreibung mixed wddx_deserialize ( string packet ) wddx_deserialize() übernimmt einen packet String and deserialisiert diesen. Es wird entweder ein String, eine Zahl oder ein Array gegeben. 'Structures' werden in assoziative Arrays deserialisiert. wddx_add_vars wddx_packet_end...
PHP Manual
[ wddx_deserialize php.net ]

PHP Funktion
Variablen außerhalb von PHP ( phplist Code 19% Relevanz )
Rubrik
Variablen
Kurzform
-----
Vorschau
...']; echo $_REQUEST['benutzername']; import_request_variables('p', 'p_'); echo $p_benutzername; // Seit PHP 3 verfügbar. Ab PHP 5.0.0 können diese langen// vordefinierten Variablen mit der Anweisung register_long_arrays// deaktiviert werden. echo $HTTP_POST_VARS['benutzername']; // Verfügbar, falls die PHP-Anweisung register_globals = on. Ab// PHP 4.2.0 ist der standardmäßige Wert von register_globals = off.// Es ist nicht ...
PHP Manual
[ Variablen außerhalb von PHP php.net ]

PHP Funktion
Stream Functions ( phplist Code 19% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... may fail for a variety of normal reasons (i.e.: Unable to connect to remote host, file not found, etc...). A stream related call may also fail because the desired stream is not registered on the running system. See the array returned by stream_get_wrappers() for a list of streams supported by your installation of PHP. As with most PHP internal functions if a failure occurs an E_WARNING message will be generated describing the nature of the ...
PHP Manual
[ Stream Functions php.net ]

PHP Funktion
PHP type comparison tables ( phplist Code 19% Relevanz )
Rubrik
Anhang
Kurzform
-----
Vorschau
...Expression gettype() empty() is_null() isset() boolean : if($x) $x = ""; string TRUE FALSE TRUE FALSE $x = NULL NULL TRUE TRUE FALSE FALSE var $x; NULL TRUE TRUE FALSE FALSE $x is undefined NULL TRUE TRUE FALSE FALSE $x = array(); array TRUE FALSE TRUE FALSE $x = false; boolean TRUE FALSE TRUE FALSE $x = true; boolean FALSE FALSE TRUE TRUE $x = 1; integer FALSE FALSE TRUE TRUE $x = 42; integer FALSE FALSE TRUE TRUE $x = 0; integer TRUE FALSE ...
PHP Manual
[ PHP type comparison tables php.net ]

PHP Funktion
add_assoc_double ( phplist Code 19% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
int add_assoc_double ( zval* arg char* key double d ) ...
Vorschau
...add_assoc_double add_assoc_double add_assoc_double -- Add a double value to an assoc array Beschreibung #include <zend_API.h> int add_assoc_double ( zval* arg, char* key, double d ) ... Parameter Liste arg ... key ... d ... Rückgabewerte ... add_assoc_double_ex add_assoc_function...
PHP Manual
[ add_assoc_double php.net ]

PHP Funktion
add_assoc_string ( phplist Code 19% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
int add_assoc_string ( zval* arg char* key char* str int duplicate ) ...
Vorschau
...add_assoc_string add_assoc_string add_assoc_string -- Add a string value to an assoc array Beschreibung #include <zend_API.h> int add_assoc_string ( zval* arg, char* key, char* str, int duplicate ) ... Parameter Liste arg ... key ... str ... duplicate ... Rückgabewerte ... add_assoc_string_ex...
PHP Manual
[ add_assoc_string php.net ]

PHP Funktion
add_index_string ( phplist Code 19% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
int add_index_string ( zval* arg ulong idx char* str int duplicate ) ...
Vorschau
...add_index_string add_index_string add_index_string -- Add string value to assoc array using numeric index Beschreibung #include <zend_API.h> int add_index_string ( zval* arg, ulong idx, char* str, int duplicate ) ... Parameter Liste arg ... idx ... str ... duplicate ... Rückgabewerte ... ...
PHP Manual
[ add_index_string php.net ]

PHP Funktion
Funktionsreferenz ( phplist Code 18% Relevanz )
Rubrik
-----
Kurzform
-----
Vorschau
...Funktionsreferenz VI. Funktionsreferenz See also Anhang I . Inhaltsverzeichnis I. .NET Funktionen II. Apache-spezifische Funktionen III. Alternative PHP Cache IV. Advanced PHP debugger V. Array Funktionen VI. Aspell Funktionen [veraltet] VII. Mathematische Funktionen mit beliebiger Genauigkeit VIII. PHP bytecode Compiler IX. Bzip2 Komprimierungsfunktionen X. Kalender-Funktionen XI. CCVS API Funktionen [veraltet...
PHP Manual
[ Funktionsreferenz php.net ]

PHP Funktion
apd_dump_persistent_resources ( phplist Code 18% Relevanz )
Rubrik
Advanced PHP debugger
Kurzform
apd_dump_persistent_resources -- Return all persistent resources as an array
Vorschau
...apd_dump_persistent_resources apd_dump_persistent_resources (no version information, might be only in CVS) apd_dump_persistent_resources -- Return all persistent resources as an array Beschreibung array apd_dump_persistent_resources ( void ) Return all persistent resources as an array. Rückgabewerte An array containing the current call stack. Beispiele Beispiel 1. apd_dump_persistent_resources() example <?php ...
PHP Manual
[ apd_dump_persistent_resources php.net ]

PHP Funktion
dbplus_restorepos ( phplist Code 18% Relevanz )
Rubrik
DB++ Functions
Kurzform
dbplus_restorepos -- Restore position
Vorschau
...dbplus_restorepos dbplus_restorepos (4.1.0 - 4.2.3 only, PECL) dbplus_restorepos -- Restore position Description int dbplus_restorepos ( resource relation, array tuple ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkündigung ändern. Seien Sie gewarnt und verwenden...
PHP Manual
[ dbplus_restorepos php.net ]

PHP Funktion
fscanf ( phplist Code 18% Relevanz )
Rubrik
Funktionen des Dateisystems
Kurzform
fscanf -- Interpretiert den Input einer Datei entsprechend einem angegebenen Format
Vorschau
... fscanf() ist sscanf() ähnlich, wobei sie ihren Input aus der mit handle angegebenen Datei nimmt, und entsprechend dem angegebenen format interpretiert. Sind nur 2 Parameter angegeben, werden die analysierten Werte als Array gegeben. Werden auch optionale Parameter übergeben, gibt die Funktion die Anzahl der ermittelten Werte . Die optionalen Parameter müssen referenziert übergeben werden. Irgendwelche Whitespace-Zeichen (z.B. Leerzeichen, ...
PHP Manual
[ fscanf php.net ]

PHP Funktion
http_parse_cookie ( phplist Code 18% Relevanz )
Rubrik
HTTP Funktionen
Kurzform
http_parse_cookie -- Parse HTTP cookie
Vorschau
...http_parse_cookie http_parse_cookie (no version information, might be only in CVS) http_parse_cookie -- Parse HTTP cookie Beschreibung object http_parse_cookie ( [string cookie [, int flags [, array allowed_extras]]] ) Parses HTTP cookies like sent in a response into a struct. Parameter Liste cookie String containing the value of a Set-Cookie response header flags Parse flags allowed_extras Array containing ...
PHP Manual
[ http_parse_cookie php.net ]

PHP Funktion
ibase_fetch_assoc ( phplist Code 18% Relevanz )
Rubrik
InterBase-Funktionen
Kurzform
ibase_fetch_assoc -- Fetch a result row from a query as an associative array
Vorschau
...ibase_fetch_assoc ibase_fetch_assoc (PHP 4 >= 4.3.0, PHP 5) ibase_fetch_assoc -- Fetch a result row from a query as an associative array Description array ibase_fetch_assoc ( resource result [, int fetch_flag] ) ibase_fetch_assoc() returns an associative array that corresponds to the fetched row. Subsequent calls will return the next row in the result set, or FALSE if ...
PHP Manual
[ ibase_fetch_assoc php.net ]

PHP Funktion
imap_getmailboxes ( phplist Code 18% Relevanz )
Rubrik
IMAP POP3 und NNTP Funktionen
Kurzform
imap_getmailboxes -- Liefert detailierte Informationen über eine Auswahl von Postfächern
Vorschau
...imap_getmailboxes imap_getmailboxes (PHP 3 >= 3.0.12, PHP 4, PHP 5) imap_getmailboxes -- Liefert detailierte Informationen über eine Auswahl von Postfächern Beschreibung array imap_getmailboxes ( int imap_stream, string ref, string pat ) imap_getmailboxes() liefert ein Array , das für jedes gefundene Postfach ein Objekt mit de Attributen name , delimiter und attributes enthält. name enthält ...
PHP Manual
[ imap_getmailboxes php.net ]

PHP Funktion
imap_mail_compose ( phplist Code 18% Relevanz )
Rubrik
IMAP POP3 und NNTP Funktionen
Kurzform
imap_mail_compose -- Erzeugt eine MIME-Nachricht aus gegebenen Header- und Body-Teilen
Vorschau
...imap_mail_compose imap_mail_compose (PHP 3 >= 3.0.5, PHP 4, PHP 5) imap_mail_compose -- Erzeugt eine MIME-Nachricht aus gegebenen Header- und Body-Teilen Beschreibung string imap_mail_compose ( array envelope, array body ) imap_lsub imap_mail_copy...
PHP Manual
[ imap_mail_compose php.net ]

PHP Funktion
intval ( phplist Code 18% Relevanz )
Rubrik
Funktionen zur Behandlung von Variablen
Kurzform
intval -- Konvertiert einen Wert nach integer
Vorschau
...] ) Liefert den integer -Wert von var unter Benutzung der angegebenen Basis. (Standardwert ist base =10). Parameter Liste var Der skalare Wert (das kann ein Ausdruck oder eine einfache Variable sein, nicht jedoch ein Array oder Objekt.), der nach integer konvertiert werden soll. base Die Basis der Konvertierung (Standard ist 10) Rückgabewerte Der integer-Wert von var bei Erfolg, sonst 0. Leere Arrays und Objekte als Parameter geben 0 , ...
PHP Manual
[ intval php.net ]

PHP Funktion
ircg_register_format_messages ( phplist Code 18% Relevanz )
Rubrik
IRC Gateway Funktionen
Kurzform
ircg_register_format_messages -- Registriert die Ausgabeformatierungen für Nachrichten und Ereignisse vom IRC-Server
Vorschau
... 4 >= 4.0.5, PHP 5 <= 5.0.4) ircg_register_format_messages -- Registriert die Ausgabeformatierungen für Nachrichten und Ereignisse vom IRC-Server Beschreibung boolean ircg_register_format_messages ( string name, array messages ) Mit der Funktion ircg_register_format_messages() kann die Formatierung der Ausgabe von IRC-Servermeldungen und -ereignissen festgelegt werden. Dabei ist es möglich mehrere Formate (Layer) zu definieren, die ...
PHP Manual
[ ircg_register_format_messages php.net ]

PHP Funktion
libxml_get_errors ( phplist Code 18% Relevanz )
Rubrik
libxml Functions
Kurzform
libxml_get_errors -- Retrieve array of errors
Vorschau
...libxml_get_errors libxml_get_errors (PHP 5 >= 5.1.0RC1) libxml_get_errors -- Retrieve array of errors Beschreibung array libxml_get_errors ( void ) Retrieve array of errors. Rückgabewerte Returns an array with LibXMLError objects if there are any errors in the buffer, or an empty array otherwise. Beispiele Beispiel 1. A libxml_get_errors() example This example demonstrates how to build a simple libxml error handler. <...
PHP Manual
[ libxml_get_errors php.net ]

PHP Funktion
maxdb_fetch_assoc ( phplist Code 18% Relevanz )
Rubrik
MaxDB PHP Extension
Kurzform
maxdb_fetch_assoc (no version information might be only in CVS)maxdb->fetch_assoc -- Fetch a result row as an associative array
Vorschau
...maxdb_fetch_assoc maxdb_fetch_assoc (PECL) maxdb_fetch_assoc (no version information, might be only in CVS) maxdb->fetch_assoc -- Fetch a result row as an associative array Description Procedural style: array maxdb_fetch_assoc ( resource result ) Object oriented style (method): class result { array fetch_assoc ( void ) } Returns an associative array that corresponds to the fetched row or NULL if there are no more rows. The ...
PHP Manual
[ maxdb_fetch_assoc php.net ]

PHP Funktion
mcrypt_list_modes ( phplist Code 18% Relevanz )
Rubrik
Mcrypt Encryption Functions
Kurzform
mcrypt_list_modes -- Get an array of all supported modes
Vorschau
...mcrypt_list_modes mcrypt_list_modes (PHP 4 >= 4.0.2, PHP 5) mcrypt_list_modes -- Get an array of all supported modes Description array mcrypt_list_modes ( [string lib_dir] ) mcrypt_list_modes() is used to get an array of all supported modes in the lib_dir . mcrypt_list_modes() takes as optional parameter a directory which specifies the directory where all modes are located. If not specifies, the value of the mcrypt.modes_dir php.ini ...
PHP Manual
[ mcrypt_list_modes php.net ]

PHP Funktion
PDOStatement->errorInfo() ( phplist Code 18% Relevanz )
Rubrik
PDO-Funktionen
Kurzform
PDOStatement->errorInfo() -- Fetch extended error information associated with the last operation on the statement handle
Vorschau
...62;errorInfo() (no version information, might be only in CVS) PDOStatement->errorInfo() -- Fetch extended error information associated with the last operation on the statement handle Beschreibung class PDOStatement { array errorInfo ( void ) } Rückgabewerte PDOStatement->errorInfo() returns an array of error information about the last operation performed by this statement handle. The array consists of the following fields: Element ...
PHP Manual
[ PDOStatement->errorInfo() php.net ]

PHP Funktion
SDO_DAS_DataFactory::addType ( phplist Code 18% Relevanz )
Rubrik
SDO Functions
Kurzform
SDO_DAS_DataFactory::addType -- Add a new type to a model
Vorschau
...::addType (no version information, might be only in CVS) SDO_DAS_DataFactory::addType -- Add a new type to a model Beschreibung void SDO_DAS_DataFactory::addType ( string type_namespace_uri, string type_name [, array options] ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkündigung ändern. Seien Sie gewarnt und ...
PHP Manual
[ SDO_DAS_DataFactory::addType php.net ]

PHP Funktion
SDO_DAS_Relational::executePreparedQuery ( phplist Code 18% Relevanz )
Rubrik
SDO Relational Data Access Service Functions
Kurzform
SDO_DAS_Relational::executePreparedQuery -- Executes an SQL query passed as a prepared statement with a list of values to substitute for placeholders and return the results as a normalised data graph.
Vorschau
...list of values to substitute for placeholders, and return the results as a normalised data graph. Beschreibung SDODataObject SDO_DAS_Relational::executePreparedQuery ( PDO database_handle, PDOStatement prepared_statement, array value_list [, array column_specifier] ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkündigung ändern...
PHP Manual
[ SDO_DAS_Relational::executePreparedQuery php.net ]

PHP Funktion
SoapServer->__construct() ( phplist Code 18% Relevanz )
Rubrik
SOAP Funktionen
Kurzform
SoapServer->__construct() -- SoapServer Konstruktor
Vorschau
...-soapserver-fault.html"> SoapServer->__construct() (no version information, might be only in CVS) SoapServer->__construct() -- SoapServer Konstruktor Beschreibung class SoapServer { __construct ( mixed wsdl [, array options] ) } Der Konstruktor erlaubt das Erzeugen eines SoapServer Objekts in WSDL oder nicht-WSDL Modus. Parameter Liste wsdl Wenn der WSDL Modus verwendet werden soll, muss die URI auf eine WSDL Datei verweisen. ...
PHP Manual
[ SoapServer->__construct() php.net ]

PHP Funktion
sscanf ( phplist Code 18% Relevanz )
Rubrik
String-Funktionen
Kurzform
sscanf -- Überträgt einen String in ein angegebenes Format
Vorschau
... str und interpretiert ihn entsprechend dem angegebenen Parameter format , der in der Dokumentation zu sprintf() näher beschrieben ist. Werden nur 2 Parameter an die Funktion übergeben, werden die analysierten Werte als Array gegeben. Andernfalls, wenn optionale Parameter beachtet wurden, gibt die Funktion die Anzahl der ermittelten Werte . Die optionalen Parameter müssen referenziert übergeben werden. Beliebige Whitespaces im Formatstring ...
PHP Manual
[ sscanf php.net ]

PHP Funktion
uksort ( phplist Code 18% Relevanz )
Rubrik
Array Funktionen
Kurzform
uksort -- Sortiert ein Array nach Schlüsseln mittels einer benutzerdefinierten Vergleichsfunktion.
Vorschau
...uksort uksort (PHP 3 >= 3.0.4, PHP 4, PHP 5) uksort -- Sortiert ein Array nach Schlüsseln mittels einer benutzerdefinierten Vergleichsfunktion. Beschreibung bool uksort ( array &array, callback cmp_function ) uksort() sortiert die Schlüssel eines Arrays mittels einer benutzerdefinierten Vergleichsfunktion. Soll das Array nach nicht trivialen Kriterien sortiert werden, sollten Sie diese Funktion ...
PHP Manual
[ uksort php.net ]

PHP Funktion
unpack ( phplist Code 18% Relevanz )
Rubrik
Sonstige Funktionen
Kurzform
unpack -- Entpackt die Daten eines Binär-Strings
Vorschau
...unpack unpack (PHP 3, PHP 4, PHP 5) unpack -- Entpackt die Daten eines Binär-Strings Beschreibung: array unpack ( string format, string data ) unpack() überträgt die Daten eines Binär-Strings in ein Array unter Berücksichtigung des format -Parameters. Das Array wird als Ergebnis des Funktionsaufrufs gegeben. unpack() funktioniert etwas anders als man es von Perl her kennt, da sich die gegebenen Daten in einem ...
PHP Manual
[ unpack php.net ]

PHP Funktion
yaz_es ( phplist Code 18% Relevanz )
Rubrik
YAZ Functions
Kurzform
yaz_es -- Prepares for an Extended Service Request
Vorschau
...yaz_es yaz_es (PECL) yaz_es -- Prepares for an Extended Service Request Beschreibung void yaz_es ( resource id, string type, array args ) This function prepares for an Extended Service Request. Extended Services is family of various Z39.50 facilities, such as Record Update, Item Order, Database administration etc. Anmerkung: Many Z39.50 Servers do ...
PHP Manual
[ yaz_es php.net ]

PHP Funktion
yp_cat ( phplist Code 18% Relevanz )
Rubrik
YP/NIS Funktionen
Kurzform
yp_cat -- Return an array containing the entire map
Vorschau
...yp_cat yp_cat (PHP 4 >= 4.0.6, PHP 5 <= 5.0.4) yp_cat -- Return an array containing the entire map Description array yp_cat ( string domain, string map ) yp_cat() returns all map entries as an array with the maps key values as array indices and the maps entries as array data. yp_all yp_err_string...
PHP Manual
[ yp_cat php.net ]

PHP Funktion
Geltungsbereich von Variablen ( phplist Code 18% Relevanz )
Rubrik
Variablen
Kurzform
-----
Vorschau
... auf die nun globalen Werte. Es gibt keine Beschränkungen bei der Anzahl an globalen Variablen, die durch eine Funktion verändert werden können. Eine e Möglichkeit besteht in der Verwendung des speziellen $GLOBALS PHP-Array. Das obige Beispiel kann damit auch so geschrieben werden: Beispiel 12-2. Die Verwendung von $GLOBALS statt global <?php $a = 1 ; $b = 2 ; function Summe () { $GLOBALS [ "b" ] = $GLOBALS [ "a" ] + $GLOBALS [ "b" ]; } ...
PHP Manual
[ Geltungsbereich von Variablen php.net ]

PHP Funktion
Verbesserte MySQL Erweiterung ( phplist Code 18% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... for the most recent function call mysqli_error -- Returns a string description of the last error mysqli_escape_string -- Alias of mysqli_real_escape_string() mysqli_execute -- Alias for mysqli_stmt_execute() mysqli_fetch_array -- Fetch a result row as an associative, a numeric array, or both mysqli_fetch_assoc -- Fetch a result row as an associative array mysqli_fetch_field_direct -- Fetch meta-data for a single field mysqli_fetch_field -- ...
PHP Manual
[ Verbesserte MySQL Erweiterung php.net ]

PHP Funktion
add_assoc_bool_ex ( phplist Code 18% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
int add_assoc_bool_ex ( zval* arg char* key uint key_len int b ) ...
Vorschau
...add_assoc_bool_ex add_assoc_bool_ex add_assoc_bool_ex -- Add a bool value to an assoc array with binary safe key Beschreibung #include <zend_API.h> int add_assoc_bool_ex ( zval* arg, char* key, uint key_len, int b ) ... Parameter Liste arg ... key ... key_len ... b ... Rückgabewerte ... API ...
PHP Manual
[ add_assoc_bool_ex php.net ]

PHP Funktion
add_assoc_long_ex ( phplist Code 18% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
int add_assoc_long_ex ( zval* arg char* key uint key_len long n ) ...
Vorschau
...add_assoc_long_ex add_assoc_long_ex add_assoc_long_ex -- Add a long value to an assoc array with binary safe key Beschreibung #include <zend_API.h> int add_assoc_long_ex ( zval* arg, char* key, uint key_len, long n ) ... Parameter Liste arg ... key ... key_len ... n ... Rückgabewerte ... ...
PHP Manual
[ add_assoc_long_ex php.net ]

PHP Funktion
add_assoc_null_ex ( phplist Code 18% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
int add_assoc_null_ex ( zval* arg char* key uint key_len ) ...
Vorschau
...add_assoc_null_ex add_assoc_null_ex add_assoc_null_ex -- Add a null value to an assoc array with binary safe key Beschreibung #include <zend_API.h> int add_assoc_null_ex ( zval* arg, char* key, uint key_len ) ... Parameter Liste arg ... key ... key_len ... Rückgabewerte ... add_assoc_long ...
PHP Manual
[ add_assoc_null_ex php.net ]

PHP Funktion
add_assoc_stringl ( phplist Code 18% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
int add_assoc_stringl ( zval* arg char* key char* str uint length int duplicate ) ...
Vorschau
...add_assoc_stringl add_assoc_stringl add_assoc_stringl -- Add a binary safe string value to an assoc array Beschreibung #include <zend_API.h> int add_assoc_stringl ( zval* arg, char* key, char* str, uint length, int duplicate ) ... Parameter Liste arg ... key ... str ... length ... duplicate ... Rückgabewerte...
PHP Manual
[ add_assoc_stringl php.net ]

PHP Funktion
add_assoc_unicode ( phplist Code 18% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
int add_assoc_unicode ( zval* arg char* key void* str int duplicate ) ...
Vorschau
...add_assoc_unicode add_assoc_unicode add_assoc_unicode -- Add a binary safe unicode_string value to an assoc array with binary safe key Beschreibung #include <zend_API.h> int add_assoc_unicode ( zval* arg, char* key, void* str, int duplicate ) ... Parameter Liste arg ... key ... str ... duplicate ... Rückgabewerte...
PHP Manual
[ add_assoc_unicode php.net ]

PHP Funktion
add_assoc_zval_ex ( phplist Code 18% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
int add_assoc_zval_ex ( zval* arg char* key uint key_len zval* value ) ...
Vorschau
...add_assoc_zval_ex add_assoc_zval_ex add_assoc_zval_ex -- Add a zval value to an assoc array with binary safe key Beschreibung #include <zend_API.h> int add_assoc_zval_ex ( zval* arg, char* key, uint key_len, zval* value ) ... Parameter Liste arg ... key ... key_len ... value ... Rückgabewerte...
PHP Manual
[ add_assoc_zval_ex php.net ]

PHP Funktion
add_index_stringl ( phplist Code 18% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
int add_index_stringl ( zval* arg ulong idx char* str uint length int duplicate ) ...
Vorschau
...add_index_stringl add_index_stringl add_index_stringl -- Add binary safe string value to assoc array using numeric index Beschreibung #include <zend_API.h> int add_index_stringl ( zval* arg, ulong idx, char* str, uint length, int duplicate ) ... Parameter Liste arg ... idx ... str ... length ... duplicate...
PHP Manual
[ add_index_stringl php.net ]

PHP Funktion
Compression Filters ( phplist Code 17% Relevanz )
Rubrik
List of Available Filters
Kurzform
-----
Vorschau
... data streams. zlib.deflate (compression) and zlib.inflate (decompression) are implementations of the compression methods described in RFC 1951 . The deflate filter takes up to three parameters passed as an associative array. level describes the compression strength to use (1-9). Higher numbers will generally yield smaller payloads at the cost of additional processing time. Two special compression levels also exist: 0 (for no compression at ...
PHP Manual
[ Compression Filters php.net ]

PHP Funktion
apache_get_modules ( phplist Code 17% Relevanz )
Rubrik
Apache-spezifische Funktionen
Kurzform
apache_get_modules -- Liste der geladenen Apachemodule
Vorschau
...apache_get_modules apache_get_modules (PHP 4 >= 4.3.2, PHP 5) apache_get_modules -- Liste der geladenen Apachemodule Beschreibung array apache_get_modules ( void ) Diese Funktion liefert Ihnen ein Array mit allen geladenen Apachemodulen. Beispiel 1. apache_get_modules() Beispiel <?php print_r ( apache_get_modules ()); ?> Die Ausgabe des obigen Programms sieht ähnlich wie folgt aus: Array( [0] => core [1] =&#...
PHP Manual
[ apache_get_modules php.net ]

PHP Funktion
compact ( phplist Code 17% Relevanz )
Rubrik
Array Funktionen
Kurzform
compact -- Erstellt ein Array mit Variablen und deren Werten
Vorschau
...compact compact (PHP 4, PHP 5) compact -- Erstellt ein Array mit Variablen und deren Werten Beschreibung array compact ( mixed varname [, mixed ...] ) compact() übernimmt eine variable Anzahl von Parametern. Jeder Parameter kann entweder ein String mit einem Variablennamen, oder ein Array mit Variablennamen sein. Dieses Array ...
PHP Manual
[ compact php.net ]

PHP Funktion
fdf_get_attachment ( phplist Code 17% Relevanz )
Rubrik
Forms Data Format Funktionen
Kurzform
fdf_get_attachment -- Extracts uploaded file embedded in the FDF
Vorschau
...fdf_get_attachment fdf_get_attachment (PHP 4 >= 4.3.0, PHP 5) fdf_get_attachment -- Extracts uploaded file embedded in the FDF Description array fdf_get_attachment ( resource fdf_document, string fieldname, string savepath ) Extracts a file uploaded by means of the "file selection" field fieldname and stores it under savepath . savepath may be the name of a plain...
PHP Manual
[ fdf_get_attachment php.net ]

PHP Funktion
get_required_files ( phplist Code 17% Relevanz )
Rubrik
PHP Optionen & Informationen
Kurzform
get_required_files -- Stellt ein Array mit den Namen der Dateien zur Verfügung die über require_once() in einem Script aufgerufen wurden
Vorschau
...get_required_files get_required_files (PHP 4, PHP 5) get_required_files -- Stellt ein Array mit den Namen der Dateien zur Verfügung, die über require_once() in einem Script aufgerufen wurden Beschreibung array get_required_files ( void ) Diese Funktion stellt ein assoziatives Array der Namen aller Dateien zur Verfügung, die mit require_once() in ein Script geladen wurden. Die Indexe dieses Arrays sind die Dateinamen, die in ...
PHP Manual
[ get_required_files php.net ]

PHP Funktion
getdate ( phplist Code 17% Relevanz )
Rubrik
Datums- und Zeit-Funktionen
Kurzform
getdate -- Gibt Datums- und Zeitinformationen zurück
Vorschau
...getdate getdate (PHP 3, PHP 4, PHP 5) getdate -- Gibt Datums- und Zeitinformationen Beschreibung: array getdate ( [int Timestamp] ) Gibt ein assoziatives array mit Datums- und Zeitangaben des angegebenen Timestamp . Wird kein Timestamp angegeben, wird die lokal gültige Zeit berücksichtigt. Die assoziativen Arrayelemente sind folgende: Tabelle 1. Schlüsselelemente des gegebenen ...
PHP Manual
[ getdate php.net ]

PHP Funktion
gettype ( phplist Code 17% Relevanz )
Rubrik
Funktionen zur Behandlung von Variablen
Kurzform
gettype -- Liefert den Datentyp einer Variablen
Vorschau
.... Rückgabewerte Mögliche Werte der gegebenen Zeichenkette sind: " boolean " (seit PHP 4) " integer " " double " (aus historischen Gründen wird "double" im Fall eines float gegeben, und nicht einfach float . " string " " array " " object " " resource " (seit PHP 4) " NULL " (seit PHP 4) "user function" (nur PHP 3, veraltett (deprecated)) "unknown type" In PHP 4 sollten Sie function_exists() und method_exists() benutzen, um die frühere ...
PHP Manual
[ gettype php.net ]

PHP Funktion
gnupg_decryptverify ( phplist Code 17% Relevanz )
Rubrik
gnupg Funktionen
Kurzform
gnupg_decryptverify -- Decrypts and verifies a given text
Vorschau
...gnupg_decryptverify gnupg_decryptverify (no version information, might be only in CVS) gnupg_decryptverify -- Decrypts and verifies a given text Beschreibung array gnupg_decryptverify ( resource identifier, string text, string plaintext ) Decrypts and verifies a given text and returns information about the signature. The parameter plaintext gets filled with the decrypted text. Rü...
PHP Manual
[ gnupg_decryptverify php.net ]

PHP Funktion
hw_GetSrcByDestObj ( phplist Code 17% Relevanz )
Rubrik
Hyperwave Functions
Kurzform
hw_GetSrcByDestObj -- Returns anchors pointing at object
Vorschau
...hw_GetSrcByDestObj hw_GetSrcByDestObj (PHP 3 >= 3.0.3, PHP 4, PECL) hw_GetSrcByDestObj -- Returns anchors pointing at object Description array hw_getsrcbydestobj ( int connection, int objectID ) Returns the object records of all anchors pointing to the object with ID objectID . The object can either be a document or an anchor of type destination. See also ...
PHP Manual
[ hw_GetSrcByDestObj php.net ]

PHP Funktion
hw_api->dbstat ( phplist Code 17% Relevanz )
Rubrik
Hyperwave API Functions
Kurzform
hw_api->dbstat -- Returns statistics about database server
Vorschau
..."> dcstat"HREF="function.hwapi-dcstat.html"> hw_api->dbstat (no version information, might be only in CVS) hw_api->dbstat -- Returns statistics about database server Description hw_api_object hw_api->dbstat ( array parameter ) See also hwapi_dcstat() , hwapi_hwstat() , hwapi_ftstat() . hw_api->copy hw_api->dcstat...
PHP Manual
[ hw_api->dbstat php.net ]

PHP Funktion
hw_api->dcstat ( phplist Code 17% Relevanz )
Rubrik
Hyperwave API Functions
Kurzform
hw_api->dcstat -- Returns statistics about document cache server
Vorschau
...HREF="function.hwapi-dstanchors.html"> hw_api->dcstat (no version information, might be only in CVS) hw_api->dcstat -- Returns statistics about document cache server Description hw_api_object hw_api->dcstat ( array parameter ) See also hwapi_hwstat() , hwapi_dbstat() , hwapi_ftstat() . hw_api->dbstat hw_api->dstanchors...
PHP Manual
[ hw_api->dcstat php.net ]

PHP Funktion
hw_api->ftstat ( phplist Code 17% Relevanz )
Rubrik
Hyperwave API Functions
Kurzform
hw_api->ftstat -- Returns statistics about fulltext server
Vorschau
...ftstat find"HREF="function.hwapi-find.html"> hw_api->ftstat (no version information, might be only in CVS) hw_api->ftstat -- Returns statistics about fulltext server Description hw_api_object hw_api->ftstat ( array parameter ) See also hwapi_dcstat() , hwapi_dbstat() , hwapi_hwstat() . hw_api->find hwapi_hgcsp...
PHP Manual
[ hw_api->ftstat php.net ]

PHP Funktion
hw_api->hwstat ( phplist Code 17% Relevanz )
Rubrik
Hyperwave API Functions
Kurzform
hw_api->hwstat -- Returns statistics about Hyperwave server
Vorschau
..."HREF="function.hwapi-identify.html"> hw_api->hwstat (no version information, might be only in CVS) hw_api->hwstat -- Returns statistics about Hyperwave server Description hw_api_object hw_api->hwstat ( array parameter ) See also hwapi_dcstat() , hwapi_dbstat() , hwapi_ftstat() . hwapi_hgcsp hw_api->identify...
PHP Manual
[ hw_api->hwstat php.net ]

PHP Funktion
hw_api->insert ( phplist Code 17% Relevanz )
Rubrik
Hyperwave API Functions
Kurzform
hw_api->insert -- Inserts a new object
Vorschau
....html"> insertanchor"HREF="function.hwapi-insertanchor.html"> hw_api->insert (no version information, might be only in CVS) hw_api->insert -- Inserts a new object Description hw_api_object hw_api->insert ( array parameter ) Insert a new object. The object type can be user, group, document or anchor. Depending on the type other object attributes has to be set. The parameter array contains the required elements 'object' and '...
PHP Manual
[ hw_api->insert php.net ]

PHP Funktion
hw_api->parents ( phplist Code 17% Relevanz )
Rubrik
Hyperwave API Functions
Kurzform
hw_api->parents -- Returns parents of an object
Vorschau
....hwapi-objectbyanchor.html"> description"HREF="function.hwapi-reason-description.html"> hw_api->parents (no version information, might be only in CVS) hw_api->parents -- Returns parents of an object Description array hw_api->parents ( array parameter ) Retrieves the parents of an object. The parents can be further filtered by specifying an object query. The parameter array contains the required elements 'objectidentifier' and the...
PHP Manual
[ hw_api->parents php.net ]

PHP Funktion
hw_api->remove ( phplist Code 17% Relevanz )
Rubrik
Hyperwave API Functions
Kurzform
hw_api->remove -- Delete an object
Vorschau
...function.hwapi-reason-type.html"> replace"HREF="function.hwapi-replace.html"> hw_api->remove (no version information, might be only in CVS) hw_api->remove -- Delete an object Description bool hw_api->remove ( array parameter ) Removes an object from the specified parent. Collections will be removed recursively. You can pass an optional object query to remove only those objects which match the query. An object will be deleted ...
PHP Manual
[ hw_api->remove php.net ]

PHP Funktion
ifx_fieldproperties ( phplist Code 17% Relevanz )
Rubrik
Informix Funktionen
Kurzform
ifx_fieldproperties -- Gibt eine Liste mit den Feldeigenschaften zurück
Vorschau
...ifx_fieldproperties ifx_fieldproperties (PHP 3 >= 3.0.3, PHP 4, PHP 5) ifx_fieldproperties -- Gibt eine Liste mit den Feldeigenschaften Beschreibung array ifx_fieldproperties ( int result_id ) Gibt ein assoziatives Array für das mit result_id angegebene Abfrageergebnis , mit den Feldnamen als Schlüssel und den SQL-Eigenschaften der Felder als Daten. Die Informix SQL Eigenschaften jedes Feldes der Ergebnismenge werden als assoziatives ...
PHP Manual
[ ifx_fieldproperties php.net ]

PHP Funktion
imagefilledpolygon ( phplist Code 17% Relevanz )
Rubrik
Grafik-Funktionen
Kurzform
imagefilledpolygon -- Zeichnet ein gefülltes Vieleck (Polygon)
Vorschau
...imagefilledpolygon imagefilledpolygon (PHP 3, PHP 4, PHP 5) imagefilledpolygon -- Zeichnet ein gefülltes Vieleck (Polygon) Beschreibung: int imagefilledpolygon ( resource im, array points, int num_points, int col ) ImageFilledPolygon() erzeugt ein Vieleck im Bild im , gefüllt mit der Farbe col . Points ist ein PHP-Array, das die Eckpunkte des Vielecks enthält. Points[0] ist die X-Koordinate (x0), ...
PHP Manual
[ imagefilledpolygon php.net ]

PHP Funktion
imap_fetch_overview ( phplist Code 17% Relevanz )
Rubrik
IMAP POP3 und NNTP Funktionen
Kurzform
imap_fetch_overview -- Liefert einen Auszug aus den Header-Feldern von Nachrichten
Vorschau
...imap_fetch_overview imap_fetch_overview (PHP 3 >= 3.0.4, PHP 4, PHP 5) imap_fetch_overview -- Liefert einen Auszug aus den Header-Feldern von Nachrichten Beschreibung array imap_fetch_overview ( int imap_stream, string sequence [, int flags] ) Diese Funktion liefert ausgewählte Headerfelder der in sequence übergebenen Nachrichten und liefert sie in einem Array mit je einem Objekt pro ...
PHP Manual
[ imap_fetch_overview php.net ]

PHP Funktion
imap_get_quotaroot ( phplist Code 17% Relevanz )
Rubrik
IMAP POP3 und NNTP Funktionen
Kurzform
imap_get_quotaroot -- Retrieve the quota settings per user
Vorschau
...imap_get_quotaroot imap_get_quotaroot (PHP 4 >= 4.3.0, PHP 5) imap_get_quotaroot -- Retrieve the quota settings per user Description array imap_get_quotaroot ( resource imap_stream, string quota_root ) Returns an array of integer values pertaining to the specified user mailbox. All values contain a key based upon the resource name, and a corresponding array with the usage and limit values within. The limit value represents the total ...
PHP Manual
[ imap_get_quotaroot php.net ]

PHP Funktion
imap_getsubscribed ( phplist Code 17% Relevanz )
Rubrik
IMAP POP3 und NNTP Funktionen
Kurzform
imap_getsubscribed -- Liefert eine Auswahl aller abbonierten Postfächer
Vorschau
...imap_getsubscribed imap_getsubscribed (PHP 3 >= 3.0.12, PHP 4, PHP 5) imap_getsubscribed -- Liefert eine Auswahl aller abbonierten Postfächer Beschreibung array imap_getsubscribed ( int imap_stream, string ref, string pattern ) Diese Funktion entspricht weitgehend imap_getmailboxes() , allerdings werden nur Postfächer gegeben, die der aktuelle Benutzer auch abboniert hat. ...
PHP Manual
[ imap_getsubscribed php.net ]

PHP Funktion
imap_listsubscribed ( phplist Code 17% Relevanz )
Rubrik
IMAP POP3 und NNTP Funktionen
Kurzform
imap_listsubscribed -- Liefert eine Liste aller abbonierten Postfächer
Vorschau
...imap_listsubscribed imap_listsubscribed (PHP 3, PHP 4, PHP 5) imap_listsubscribed -- Liefert eine Liste aller abbonierten Postfächer Beschreibung array imap_listsubscribed ( int imap_stream, string ref, string pattern ) Diese Funktion entspricht weitgehend imap_listmailbox() , allerdings werden nur Postfächer gegeben, die der aktuelle Benutzer auch abboniert hat. ...
PHP Manual
[ imap_listsubscribed php.net ]

PHP Funktion
ldap_get_attributes ( phplist Code 17% Relevanz )
Rubrik
LDAP Funktionen
Kurzform
ldap_get_attributes -- Liefert Merkmale eines Suchergebnis-Eintrags
Vorschau
...ldap_get_attributes ldap_get_attributes (PHP 3, PHP 4, PHP 5) ldap_get_attributes -- Liefert Merkmale eines Suchergebnis-Eintrags Beschreibung array ldap_get_attributes ( resource Verbindungs-Kennung, resource Ergebnis-Eintrag-Kennung ) Rückgabewert: im Erfolgsfall wird die gesamte Information eines Eintrags in einem multidimensionalen Array gegeben; im Fehlerfall ...
PHP Manual
[ ldap_get_attributes php.net ]

PHP Funktion
ldap_get_values_len ( phplist Code 17% Relevanz )
Rubrik
LDAP Funktionen
Kurzform
ldap_get_values_len -- Liefert alle binären Werte eines Ergebnis-Eintrags
Vorschau
...ldap_get_values_len ldap_get_values_len (PHP 3 >= 3.0.13, PHP 4, PHP 5) ldap_get_values_len -- Liefert alle binären Werte eines Ergebnis-Eintrags Beschreibung array ldap_get_values_len ( resource Verbindungs-Kennung, resource Ergebnis-Eintrag-Kennung, string merkmal ) Rückgabewert: im Erfolgsfall ein Array der Werte des Merkmals, FALSE im Fehlerfall. Die ldap_get_values_len() ...
PHP Manual
[ ldap_get_values_len php.net ]

PHP Funktion
mb_ereg_search_pos ( phplist Code 17% Relevanz )
Rubrik
Multibyte String Functions
Kurzform
mb_ereg_search_pos -- Return position and length of matched part of multibyte regular expression for predefined multibyte string
Vorschau
...mb_ereg_search_pos mb_ereg_search_pos (PHP 4 >= 4.2.0) mb_ereg_search_pos -- Return position and length of matched part of multibyte regular expression for predefined multibyte string Description array mb_ereg_search_pos ( [string pattern [, string option]] ) mb_ereg_search_pos() returns an array including position of matched part for multibyte regular expression. The first element of the array will be the beginning of...
PHP Manual
[ mb_ereg_search_pos php.net ]

PHP Funktion
mb_ereg ( phplist Code 17% Relevanz )
Rubrik
Multibyte String Functions
Kurzform
mb_ereg -- Regular expression match with multibyte support
Vorschau
...mb_ereg mb_ereg (PHP 4 >= 4.2.0) mb_ereg -- Regular expression match with multibyte support Description int mb_ereg ( string pattern, string string [, array regs] ) mb_ereg() executes the regular expression match with multibyte support, and returns 1 if matches are found. If the optional third parameter was specified, the function returns the byte length of matched part, and...
PHP Manual
[ mb_ereg php.net ]

PHP Funktion
Memcache::getStats ( phplist Code 17% Relevanz )
Rubrik
Memcache Functions
Kurzform
Memcache::getStats -- Get statistics of the server
Vorschau
...Memcache::getStats Memcache::getStats (no version information, might be only in CVS) Memcache::getStats -- Get statistics of the server Beschreibung array Memcache::getStats ( [string type [, int slabid [, int limit]]] ) Memcache::getStats() returns an associative array with server's statistics. Array keys correspond to stats parameters and values to parameter's values. ...
PHP Manual
[ Memcache::getStats php.net ]

PHP Funktion
openal_listener_get ( phplist Code 17% Relevanz )
Rubrik
OpenAL Audio Bindings
Kurzform
openal_listener_get -- Retrieve a listener property
Vorschau
...openal_listener_get (PECL) openal_listener_get -- Retrieve a listener property Beschreibung mixed openal_listener_get ( int property ) Parameter Liste property Property to retrieve, one of: AL_GAIN (float), AL_POSITION (array(float,float,float)), AL_VELOCITY (array(float,float,float)) und AL_ORIENTATION (array(float,float,float)). Rückgabewerte Returns a float or array of floats (as appropriate), or FALSE on failure. Siehe auch ...
PHP Manual
[ openal_listener_get php.net ]

PHP Funktion
openal_listener_set ( phplist Code 17% Relevanz )
Rubrik
OpenAL Audio Bindings
Kurzform
openal_listener_set -- Set a listener property
Vorschau
... (PECL) openal_listener_set -- Set a listener property Beschreibung bool openal_listener_set ( int property, mixed setting ) Parameter Liste property Property to set, one of: AL_GAIN (float), AL_POSITION (array(float,float,float)), AL_VELOCITY (array(float,float,float)) und AL_ORIENTATION (array(float,float,float)). setting Value to set, either float, or an array of floats as appropriate. Rückgabewerte Gibt bei Erfolg TRUE , ...
PHP Manual
[ openal_listener_set php.net ]

PHP Funktion
openssl_x509_parse ( phplist Code 17% Relevanz )
Rubrik
OpenSSL Funktionen
Kurzform
openssl_x509_parse -- Analyse eines X509 Zertifikats und Rückgabe der Information in einem Array
Vorschau
...openssl_x509_parse openssl_x509_parse (PHP 4 >= 4.0.6, PHP 5) openssl_x509_parse -- Analyse eines X509 Zertifikats und Rückgabe der Information in einem Array Beschreibung array openssl_x509_parse ( mixed x509cert [, bool shortnames] ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ...
PHP Manual
[ openssl_x509_parse php.net ]

PHP Funktion
PDO->prepare() ( phplist Code 17% Relevanz )
Rubrik
PDO-Funktionen
Kurzform
PDO->prepare() -- Prepares a statement for execution and returns a statement object
Vorschau
...PDO->prepare() (no version information, might be only in CVS) PDO->prepare() -- Prepares a statement for execution and returns a statement object Beschreibung class PDO { PDOStatement prepare ( string statement [, array driver_options] ) } Prepares an SQL statement to be executed by the PDOStatement->execute() method. The SQL statement can contain zero or more named (:name) or question mark (?) parameter markers for which real ...
PHP Manual
[ PDO->prepare() php.net ]

PHP Funktion
px_retrieve_record ( phplist Code 17% Relevanz )
Rubrik
Paradox File Access
Kurzform
px_retrieve_record -- Returns record of paradox database
Vorschau
...px_retrieve_record px_retrieve_record (PECL) px_retrieve_record -- Returns record of paradox database Beschreibung array px_retrieve_record ( resource pxdoc, int num [, int mode] ) This function is very similar to px_get_record() but uses internally a different approach to retrieve the data. It relies on pxlib for reading each single field...
PHP Manual
[ px_retrieve_record php.net ]

PHP Funktion
SDO_DAS_Relational::__construct ( phplist Code 17% Relevanz )
Rubrik
SDO Relational Data Access Service Functions
Kurzform
SDO_DAS_Relational::__construct -- Creates an instance of a Relational Data Access Service
Vorschau
...::__construct (no version information, might be only in CVS) SDO_DAS_Relational::__construct -- Creates an instance of a Relational Data Access Service Beschreibung SDO_DAS_Relational SDO_DAS_Relational::__construct ( array database_metadata [, string application_root_type [, array SDO_containment_references_metadata]] ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, ...
PHP Manual
[ SDO_DAS_Relational::__construct php.net ]

PHP Funktion
sesam_fetch_result ( phplist Code 17% Relevanz )
Rubrik
SESAM Datenbankfunktionen
Kurzform
sesam_fetch_result -- Liefert das Ergebnis einer Abfrage (ganz oder teilweise)
Vorschau
... sesam_fetch_result (PHP 3 CVS only) sesam_fetch_result -- Liefert das Ergebnis einer Abfrage (ganz oder teilweise) Beschreibung mixed sesam_fetch_result ( string result_id [, int max_rows] ) Liefert ein gemischtes Array (???) mit den Ergebnissen einer Abfrage, optional begrenzt auf ein Maximum durch max_rows Zeilen. Sowohl Zeilen- als auch Spaltenindizes sind Null-basiert. Tabelle 1. Gemischtes Resultat mit der Funktion ...
PHP Manual
[ sesam_fetch_result php.net ]

PHP Funktion
SoapServer->getFunctions() ( phplist Code 17% Relevanz )
Rubrik
SOAP Funktionen
Kurzform
SoapServer->getFunctions() -- Gibt eine Liste aller definierten Funktionen zurück
Vorschau
....soap-soapserver-handle.html"> SoapServer->getFunctions() (no version information, might be only in CVS) SoapServer->getFunctions() -- Gibt eine Liste aller definierten Funktionen Beschreibung class SoapServer { array getFunctions ( void ) } Gibt eine Liste aller Funktionen die durch SoapServer->addFunction() oder SoapServer->setClass() hinzugefügt wurden. Rückgabewerte Liste aller definierten Funktionen. Beispiele Beispiel...
PHP Manual
[ SoapServer->getFunctions() php.net ]

PHP Funktion
socket_create_pair ( phplist Code 17% Relevanz )
Rubrik
Socket Funktionen
Kurzform
socket_create_pair -- Erzeugt ein paar von unverwechselbaren Sockets und speichert sie in einem Array.
Vorschau
...socket_create_pair socket_create_pair (PHP 4 >= 4.1.0, PHP 5) socket_create_pair -- Erzeugt ein paar von unverwechselbaren Sockets und speichert sie in einem Array. Beschreibung bool socket_create_pair ( int domain, int type, int protocol, array &fd ) socket_create_pair() erzeugt zwei nicht unterscheidbare verbundene Sockets und speichert sie im Array fd . Diese Funktion wird ...
PHP Manual
[ socket_create_pair php.net ]

PHP Funktion
sqlite_single_query ( phplist Code 17% Relevanz )
Rubrik
SQLite
Kurzform
sqlite_single_query (no version information might be only in CVS)SQLiteDatabase->singleQuery -- Executes a query and returns either an array for one single column or the value of the first row
Vorschau
...sqlite_single_query sqlite_single_query (PHP 5) sqlite_single_query (no version information, might be only in CVS) SQLiteDatabase->singleQuery -- Executes a query and returns either an array for one single column or the value of the first row Beschreibung array sqlite_single_query ( resource db, string query [, bool first_row_only [, bool decode_binary]] ) Object oriented style (method): class SQLiteDatabase...
PHP Manual
[ sqlite_single_query php.net ]

PHP Funktion
stats_stat_paired_t ( phplist Code 17% Relevanz )
Rubrik
Statistics Functions
Kurzform
stats_stat_paired_t -- Not documented
Vorschau
...stats_stat_paired_t stats_stat_paired_t (PECL) stats_stat_paired_t -- Not documented Beschreibung float stats_stat_paired_t ( array arr1, array arr2 ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. Parameter Liste arr1 Its description arr2 Its description Rückgabewerte What the function returns, ...
PHP Manual
[ stats_stat_paired_t php.net ]

PHP Funktion
stats_stat_powersum ( phplist Code 17% Relevanz )
Rubrik
Statistics Functions
Kurzform
stats_stat_powersum -- Not documented
Vorschau
...stats_stat_powersum stats_stat_powersum (PECL) stats_stat_powersum -- Not documented Beschreibung float stats_stat_powersum ( array arr, float power ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. Parameter Liste arr Its description power Its description Rückgabewerte What the function ...
PHP Manual
[ stats_stat_powersum php.net ]

PHP Funktion
stream_get_filters ( phplist Code 17% Relevanz )
Rubrik
Stream Functions
Kurzform
stream_get_filters -- Retrieve list of registered filters
Vorschau
...stream_get_filters stream_get_filters (PHP 5) stream_get_filters -- Retrieve list of registered filters Description array stream_get_filters ( void ) Returns an indexed array containing the name of all stream filters available on the running system. Beispiel 1. Using stream_get_filters() <?php $streamlist = stream_get_filters (); print_r ( $streamlist ); ?> Output will be similar to ...
PHP Manual
[ stream_get_filters php.net ]

PHP Funktion
stream_set_timeout ( phplist Code 17% Relevanz )
Rubrik
Stream Functions
Kurzform
stream_set_timeout -- Set timeout period on a stream
Vorschau
...int seconds [, int microseconds] ) Sets the timeout value on stream , expressed in the sum of seconds and microseconds . Gibt bei Erfolg TRUE , im Fehlerfall FALSE . When the stream times out, the 'timed_out' key of the array returned by stream_get_meta_data() is set to TRUE , although no error/warning is generated. Beispiel 1. stream_set_timeout() example <?php $fp = fsockopen ( "www.example.com" , 80 ); if (! $fp ) { echo "Unable to open...
PHP Manual
[ stream_set_timeout php.net ]

PHP Funktion
stream_socket_pair ( phplist Code 17% Relevanz )
Rubrik
Stream Functions
Kurzform
stream_socket_pair -- Creates a pair of connected indistinguishable socket streams
Vorschau
...stream_socket_pair stream_socket_pair (PHP 5 >= 5.1.0RC1) stream_socket_pair -- Creates a pair of connected, indistinguishable socket streams Beschreibung array stream_socket_pair ( int domain, int type, int protocol ) stream_socket_pair() creates a pair of connected, indistinguishable socket streams. This function is commonly used in IPC (Inter-Process Communication). Parameter...
PHP Manual
[ stream_socket_pair php.net ]

PHP Funktion
vpopmail_alias_get ( phplist Code 17% Relevanz )
Rubrik
vpopmail Functions
Kurzform
vpopmail_alias_get -- Get all lines of an alias for a domain
Vorschau
...vpopmail_alias_get vpopmail_alias_get (4.1.0 - 4.2.3 only, PECL) vpopmail_alias_get -- Get all lines of an alias for a domain Beschreibung array vpopmail_alias_get ( string alias, string domain ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkü...
PHP Manual
[ vpopmail_alias_get php.net ]

PHP Funktion
vprintf ( phplist Code 17% Relevanz )
Rubrik
String-Funktionen
Kurzform
vprintf -- Gibt einen formatierten String zurück
Vorschau
...vprintf vprintf (PHP 4 >= 4.1.0, PHP 5) vprintf -- Gibt einen formatierten String Beschreibung int vprintf ( string format, array args ) Zeigt die Werte eines Arrays als formatierten String entsprechend der Format anweisungen (siehe Beschreibung der Formatierungsmöglichkeiten der Funktion sprintf() ). Arbeitet wie printf() , akzeptiert jedoch ein Array anstelle mehrerer Werte als ...
PHP Manual
[ vprintf php.net ]

PHP Funktion
win32_ps_stat_proc ( phplist Code 17% Relevanz )
Rubrik
win32ps Functions
Kurzform
win32_ps_stat_proc -- Stat process
Vorschau
...win32_ps_stat_proc win32_ps_stat_proc (no version information, might be only in CVS) win32_ps_stat_proc -- Stat process Beschreibung array win32_ps_stat_proc ( [int pid] ) Retrieves statistics about the process with the process id pid . Parameter Liste pid The process id of the process to stat. If omitted, the id of the current process. Rückgabewerte ...
PHP Manual
[ win32_ps_stat_proc php.net ]

PHP Funktion
xml_set_character_data_handler ( phplist Code 17% Relevanz )
Rubrik
XML Parser Functions
Kurzform
xml_set_character_data_handler -- Set up character data handler
Vorschau
... function is set to an empty string, or FALSE , the handler in question is disabled. TRUE is returned if the handler is set up, FALSE if parser is not a parser. Anmerkung: Anstelle eines Funktionsnamenskann auch ein Array mit einer Objekt-Referenz und dem Namen einer Methodeangegeben werden. xml_parser_set_option xml_set_default_handler...
PHP Manual
[ xml_set_character_data_handler php.net ]

PHP Funktion
yp_next ( phplist Code 17% Relevanz )
Rubrik
YP/NIS Funktionen
Kurzform
yp_next -- Gibt das nächste Schlüssel-Wert-Paar in der angegebenen Map zurück.
Vorschau
...yp_next yp_next (PHP 3 >= 3.0.7, PHP 4, PHP 5 <= 5.0.4) yp_next -- Gibt das nächste Schlüssel-Wert-Paar in der angegebenen Map . Beschreibung array yp_next ( string domain, string map, string key ) yp_next() gibt den das nächste Schlüssel-Wert-Paar in der angegebene Map , nachdem der Schlüssel übergeben wurde, bei einem Fehler FALSE . Beispiel 1. Beispiel für den n...
PHP Manual
[ yp_next php.net ]

PHP Funktion
Ausnahmebehandlung ( phplist Code 17% Relevanz )
Rubrik
Sprachreferenz
Kurzform
-----
Vorschau
... function getMessage (); // Mitteilung der Ausnahme final function getCode (); // Code der Ausnahme final function getFile (); // Quelldateiname final function getLine (); // Quelldateizeile final function getTrace (); // Array mit Ablaufverfolgung final function getTraceAsString (); // Formatierter String mit // Ablaufverfolgung /* Überschreibbar */ function __toString (); // Formatierter String für // Ausgabe } ?> Wenn eine Klasse die ...
PHP Manual
[ Ausnahmebehandlung php.net ]

PHP Funktion
mailparse Functions ( phplist Code 17% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... the transfer encoding mailparse_msg_extract_part -- Extracts/decodes a message section mailparse_msg_free -- Frees a handle allocated by mailparse_msg_create() mailparse_msg_get_part_data -- Returns an associative array of info about the message mailparse_msg_get_part -- Returns a handle on a given section in a mimemessage mailparse_msg_get_structure -- Returns an array of mime section names in the supplied message ...
PHP Manual
[ mailparse Functions php.net ]

PHP Funktion
Oracle 8 Funktionen ( phplist Code 17% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
...->truncate -- Truncates large object OCI-Lob->write -- Writes data to the large object OCI-Lob->writeTemporary -- Writes temporary large object OCI-Lob->writeToFile -- Alias von oci_lob_export() oci_bind_array_by_name -- Binds PHP array to Oracle PL/SQL array by name oci_bind_by_name -- Binds the PHP variable to the Oracle placeholder oci_cancel -- Cancels reading from cursor oci_close -- Closes Oracle connection oci_commit -- ...
PHP Manual
[ Oracle 8 Funktionen php.net ]

PHP Funktion
Parsekit Functions ( phplist Code 17% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... opcode notation. PARSEKIT_EXTENDED_VALUE ( int ) Opnode Flag PARSEKIT_RESULT_CONST ( int ) Opnode Flag PARSEKIT_RESULT_EA_TYPE ( int ) Opnode Flag PARSEKIT_RESULT_JMP_ADDR ( int ) Opnode Flag PARSEKIT_RESULT_OPARRAY ( int ) Opnode Flag PARSEKIT_RESULT_OPLINE ( int ) Opnode Flag PARSEKIT_RESULT_VAR ( int ) Opnode Flag PARSEKIT_USAGE_UNKNOWN ( int ) Opnode Flag PARSEKIT_ZEND_INTERNAL_CLASS ( int ) Class Type ...
PHP Manual
[ Parsekit Functions php.net ]

PHP Funktion
Drucker Funktionen ( phplist Code 17% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... Ecken printer_draw_text -- Zeichnet einen text printer_end_doc -- Schließt ein Dokument printer_end_page -- Schließt die aktive Seite printer_get_option -- Liest Einstellungen des Druckers printer_list -- Liefert ein Array von Zeigern auf den Server printer_logical_fontheight -- Berechnet die logische Schrifthöhe printer_open -- Erstellt eine Verbindung zu einem Drucker printer_select_brush -- Wählt einen Pinsel aus printer_select_font -- ...
PHP Manual
[ Drucker Funktionen php.net ]

PHP Funktion
add_assoc_double_ex ( phplist Code 17% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
int add_assoc_double_ex ( zval* arg char* key uint key_len double d ) ...
Vorschau
...add_assoc_double_ex add_assoc_double_ex add_assoc_double_ex -- Add a double value to an assoc array with binary safe key Beschreibung #include <zend_API.h> int add_assoc_double_ex ( zval* arg, char* key, uint key_len, double d ) ... Parameter Liste arg ... key ... key_len ... d ... Rückgabewerte ... ...
PHP Manual
[ add_assoc_double_ex php.net ]

PHP Funktion
add_assoc_function ( phplist Code 17% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
int add_assoc_function ( zval* arg char* key void (*function_ptr)(INTERNAL_FUNCTION_PARAMETERS) ) ...
Vorschau
...add_assoc_function add_assoc_function add_assoc_function -- Add a function pointer to an assoc array Beschreibung #include <zend_API.h> int add_assoc_function ( zval* arg, char* key, void (*function_ptr)(INTERNAL_FUNCTION_PARAMETERS) ) ... Parameter Liste arg ... key ... (*function_ptr)(...
PHP Manual
[ add_assoc_function php.net ]

PHP Funktion
add_assoc_resource ( phplist Code 17% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
int add_assoc_resource ( zval* arg char* key int r ) ...
Vorschau
...add_assoc_resource add_assoc_resource add_assoc_resource -- Add a resource value to an assoc array Beschreibung #include <zend_API.h> int add_assoc_resource ( zval* arg, char* key, int r ) ... Parameter Liste arg ... key ... r ... Rückgabewerte ... add_assoc_resource_ex add_assoc_string_ex...
PHP Manual
[ add_assoc_resource php.net ]

PHP Funktion
add_assoc_string_ex ( phplist Code 17% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
int add_assoc_string_ex ( zval* arg char* key uint key_len char* str int duplicate ) ...
Vorschau
...add_assoc_string_ex add_assoc_string_ex add_assoc_string_ex -- Add a string value to an assoc array with binary safe key Beschreibung #include <zend_API.h> int add_assoc_string_ex ( zval* arg, char* key, uint key_len, char* str, int duplicate ) ... Parameter Liste arg ... key ... key_len ... str ... ...
PHP Manual
[ add_assoc_string_ex php.net ]

PHP Funktion
add_assoc_unicodel ( phplist Code 17% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
int add_assoc_unicodel ( zval* arg char* key void* str uint length int duplicate ) ...
Vorschau
...add_assoc_unicodel add_assoc_unicodel add_assoc_unicodel -- Add a binary safe unicode_string value to an assoc array Beschreibung #include <zend_API.h> int add_assoc_unicodel ( zval* arg, char* key, void* str, uint length, int duplicate ) ... Parameter Liste arg ... key ... str ... length ... duplicate ... Rückgabewerte...
PHP Manual
[ add_assoc_unicodel php.net ]

PHP Funktion
add_next_index_zval ( phplist Code 17% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
int add_next_index_zval ( zval* arg zval* value ) ...
Vorschau
...add_next_index_zval add_next_index_zval add_next_index_zval -- Add zval value to assoc array using next free numeric index Beschreibung #include <zend_API.h> int add_next_index_zval ( zval* arg, zval* value ) ... Parameter Liste arg ... value ... Rückgabewerte ... add_next_index_unset ...
PHP Manual
[ add_next_index_zval php.net ]

PHP Funktion
Accepting Arguments ( phplist Code 17% Relevanz )
Rubrik
Zend API: Hacking the Core of PHP
Kurzform
-----
Vorschau
...() also performs type conversions whenever possible, so that you always receive the data in the format you asked for. Any type of scalar can be converted to another one, but conversions between complex types (arrays, objects, and resources) and scalar types are not allowed. If the parameters could be obtained successfully and there were no errors during type conversion, the function will return SUCCESS , otherwise it will return ...
PHP Manual
[ Accepting Arguments php.net ]

PHP Funktion
Creating Extensions ( phplist Code 17% Relevanz )
Rubrik
Zend API: Hacking the Core of PHP
Kurzform
-----
Vorschau
... for the new extension. By default, all the sample sources are disabled, so you don't have to fear breaking your build process. After you run buildconf , configure --help shows the following additional modules: --enable-array_experiments BOOK: Enables array experiments --enable-call_userland BOOK: Enables userland module --enable-cross_conversion BOOK: Enables cross-conversion module --enable-first_module BOOK: Enables first module --enable-...
PHP Manual
[ Creating Extensions php.net ]

PHP Funktion
apc_define_constants ( phplist Code 16% Relevanz )
Rubrik
Alternative PHP Cache
Kurzform
apc_define_constants -- Defines a set of constants for later retrieval and mass-definition
Vorschau
...apc_define_constants apc_define_constants (PECL) apc_define_constants -- Defines a set of constants for later retrieval and mass-definition Beschreibung bool apc_define_constants ( string key, array constants [, bool case_sensitive] ) define() is notoriously slow. Since the main benefit of APC is to increase the performance of scripts/applications, this mechanism is provided to streamline the process of mass ...
PHP Manual
[ apc_define_constants php.net ]

PHP Funktion
cpdf_set_text_matrix ( phplist Code 16% Relevanz )
Rubrik
ClibPDF Funktionen
Kurzform
cpdf_set_text_matrix -- Legt die Text-Matrix fest
Vorschau
...cpdf_set_text_matrix cpdf_set_text_matrix (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4) cpdf_set_text_matrix -- Legt die Text-Matrix fest Beschreibung bool cpdf_set_text_matrix ( int PDF-Dokument, array Matrix ) Die Funktion cpdf_set_text_matrix() legt die Matrix fest, die eine auf die aktuelle Schriftart angewandte Transformation beschreibt. Gibt bei Erfolg TRUE , im Fehlerfall FALSE . cpdf_set_subject ...
PHP Manual
[ cpdf_set_text_matrix php.net ]

PHP Funktion
geoip_region_by_name ( phplist Code 16% Relevanz )
Rubrik
GeoIP Functions
Kurzform
geoip_region_by_name -- Get the country code and region
Vorschau
...geoip_region_by_name geoip_region_by_name (no version information, might be only in CVS) geoip_region_by_name -- Get the country code and region Beschreibung array geoip_region_by_name ( string hostname ) The geoip_region_by_name() function will return the country and region corresponding to a hostname or an IP address. This function is currently only available to users who have ...
PHP Manual
[ geoip_region_by_name php.net ]

PHP Funktion
http_negotiate_ctype ( phplist Code 16% Relevanz )
Rubrik
HTTP Funktionen
Kurzform
http_negotiate_ctype -- Negotiate clients preferred content type
Vorschau
...http_negotiate_ctype http_negotiate_ctype (no version information, might be only in CVS) http_negotiate_ctype -- Negotiate clients preferred content type Beschreibung string http_negotiate_ctype ( [array supported [, array &result]] ) This function negotiates the clients preferred content type based on its Accept HTTP header. The qualifier is recognized and content types without qualifier are rated highest. Parameter Liste supported ...
PHP Manual
[ http_negotiate_ctype php.net ]

PHP Funktion
hw_getremotechildren ( phplist Code 16% Relevanz )
Rubrik
Hyperwave Functions
Kurzform
hw_getremotechildren -- Gets children of remote document
Vorschau
... Hyperwave Programmers' Guide. If the number of children is 1 the function will return the document itself formatted by the Hyperwave Gateway Interface (HGI). If the number of children is greater than 1 it will return an array of object record with each maybe the input value for another call to hw_getremotechildren() . Those object records are virtual and do not exist in the Hyperwave server, therefore they do not have a valid object ID. How ...
PHP Manual
[ hw_getremotechildren php.net ]

PHP Funktion
hw_api->children ( phplist Code 16% Relevanz )
Rubrik
Hyperwave API Functions
Kurzform
hw_api->children -- Returns children of an object
Vorschau
...="function.hwapi-checkout.html"> mimetype"HREF="function.hwapi-content-mimetype.html"> hw_api->children (no version information, might be only in CVS) hw_api->children -- Returns children of an object Description array hw_api->children ( array parameter ) Retrieves the children of a collection or the attributes of a document. The children can be further filtered by specifying an object query. The parameter array contains the ...
PHP Manual
[ hw_api->children php.net ]

PHP Funktion
hw_api->identify ( phplist Code 16% Relevanz )
Rubrik
Hyperwave API Functions
Kurzform
hw_api->identify -- Log into Hyperwave Server
Vorschau
....hwapi-hwstat.html"> info"HREF="function.hwapi-info.html"> hw_api->identify (no version information, might be only in CVS) hw_api->identify -- Log into Hyperwave Server Description bool hw_api->identify ( array parameter ) Logs into the Hyperwave Server. The parameter array must contain the elements 'username' and 'password'. The return value will be an object of type HW_API_Error if identification failed or TRUE if it was ...
PHP Manual
[ hw_api->identify php.net ]

PHP Funktion
hw_api->userlist ( phplist Code 16% Relevanz )
Rubrik
Hyperwave API Functions
Kurzform
hw_api->userlist -- Returns a list of all logged in users
Vorschau
...hw_api->userlist user"HREF="function.hwapi-user.html"> hw_api->userlist (no version information, might be only in CVS) hw_api->userlist -- Returns a list of all logged in users Description array hw_api->userlist ( array parameter ) See also hwapi_user() . hw_api->user IBM Functions (PDO_IBM...
PHP Manual
[ hw_api->userlist php.net ]

PHP Funktion
ircg_fetch_error_msg ( phplist Code 16% Relevanz )
Rubrik
IRC Gateway Funktionen
Kurzform
ircg_fetch_error_msg -- Liefert den Fehler des letzten ircg Funktionsaufrufes.
Vorschau
...ircg_fetch_error_msg ircg_fetch_error_msg (PHP 4 >= 4.1.0, PHP 5 <= 5.0.4) ircg_fetch_error_msg -- Liefert den Fehler des letzten ircg Funktionsaufrufes. Beschreibung array ircg_fetch_error_msg ( resource connection ) ircg_fetch_error_msg() Liefet den Fehler der Verbindung connection der letzten aufgerufenen ircg Funktion . Anmerkung: Die Fehlernummer wird im ersten Element des Arrays ...
PHP Manual
[ ircg_fetch_error_msg php.net ]

PHP Funktion
openssl_pkcs7_verify ( phplist Code 16% Relevanz )
Rubrik
OpenSSL Funktionen
Kurzform
openssl_pkcs7_verify -- Überprüft die Unterschrift einer mit S/MIME unterschriebenen Nachricht
Vorschau
... (PHP 4 >= 4.0.6, PHP 5) openssl_pkcs7_verify -- Überprüft die Unterschrift einer mit S/MIME unterschriebenen Nachricht Beschreibung bool openssl_pkcs7_verify ( string filename, int flags [, string outfilename [, array cainfo [, string extracerts]]] ) Die Funktion openssl_pkcs7_verify() liest die S/MIME Nachricht, die in der Datei filename enthalten ist und untersucht die digitale Unterschrift. Ist die Unterschrift überprüft wird TRUE ...
PHP Manual
[ openssl_pkcs7_verify php.net ]

PHP Funktion
PDO->errorInfo() ( phplist Code 16% Relevanz )
Rubrik
PDO-Funktionen
Kurzform
PDO->errorInfo() -- Fetch extended error information associated with the last operation on the database handle
Vorschau
...-exec.html"> PDO->errorInfo() (no version information, might be only in CVS) PDO->errorInfo() -- Fetch extended error information associated with the last operation on the database handle Beschreibung class PDO { array errorInfo ( void ) } Rückgabewerte PDO->errorInfo() returns an array of error information about the last operation performed by this database handle. The array consists of the following fields: Element Information 0 ...
PHP Manual
[ PDO->errorInfo() php.net ]

PHP Funktion
stream_get_meta_data ( phplist Code 16% Relevanz )
Rubrik
Stream Functions
Kurzform
stream_get_meta_data -- Retrieves header/meta data from streams/file pointers
Vorschau
...stream_get_meta_data stream_get_meta_data (PHP 4 >= 4.3.0, PHP 5) stream_get_meta_data -- Retrieves header/meta data from streams/file pointers Description array stream_get_meta_data ( resource stream ) Returns information about an existing stream . The stream can be any stream created by fopen() , fsockopen() and pfsockopen() . The result array contains the following items: ...
PHP Manual
[ stream_get_meta_data php.net ]

PHP Funktion
win32_create_service ( phplist Code 16% Relevanz )
Rubrik
win32service Functions
Kurzform
win32_create_service -- Creates a new service entry in the SCM database
Vorschau
...win32_create_service win32_create_service (PECL) win32_create_service -- Creates a new service entry in the SCM database Beschreibung int win32_create_service ( array details [, string machine] ) Parameter Liste details An array of service details: service The short name of the service. This is the name that you will use to control the service using the net command. The service must...
PHP Manual
[ win32_create_service php.net ]

PHP Funktion
xmlrpc_parse_method_descriptions ( phplist Code 16% Relevanz )
Rubrik
XML-RPC Functions
Kurzform
xmlrpc_parse_method_descriptions -- Decodes XML into a list of method descriptions
Vorschau
...xmlrpc_parse_method_descriptions xmlrpc_parse_method_descriptions (PHP 4 >= 4.1.0, PHP 5) xmlrpc_parse_method_descriptions -- Decodes XML into a list of method descriptions Beschreibung array xmlrpc_parse_method_descriptions ( string xml ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkündigung...
PHP Manual
[ xmlrpc_parse_method_descriptions php.net ]

PHP Funktion
XSLTProcessor->setParameter() ( phplist Code 16% Relevanz )
Rubrik
XSL functions
Kurzform
XSLTProcessor->setParameter() -- Set value for a parameter
Vorschau
...->setParameter() -- Set value for a parameter Beschreibung class XSLTProcessor { bool setParameter ( string namespace, string name, string value ) }class XSLTProcessor { bool setParameter ( string namespace, array options ) } Sets the value of one or more parameters to be used in subsequent transformations with XSLTProcessor . If the parameter doesn't exist in the stylesheet it will be ignored. Parameter Liste namespace The ...
PHP Manual
[ XSLTProcessor->setParameter() php.net ]

PHP Funktion
xslt_set_sax_handler ( phplist Code 16% Relevanz )
Rubrik
XSLT Funktionen
Kurzform
xslt_set_sax_handler -- Setzen des SAX handlers für einen XSLT-Prozessor
Vorschau
...xslt_set_sax_handler xslt_set_sax_handler (4.0.3 - 4.0.6 only) xslt_set_sax_handler -- Setzen des SAX handlers für einen XSLT-Prozessor Beschreibung bool xslt_set_sax_handler ( resource xh, array handlers ) Setzen des SAX handlers für einen XSLT Prozessor, welcher durch das Handle xh identifiziert wird. xslt_set_object xslt_set_sax_handlers...
PHP Manual
[ xslt_set_sax_handler php.net ]

PHP Funktion
Zuweisungsoperatoren ( phplist Code 16% Relevanz )
Rubrik
Operatoren
Kurzform
-----
Vorschau
... Wert der Ursprungsvarialbe der neuen Variable zuweist (Zuweisung als Wert, sie "kopiert"), weshalb sich Änderungen an der einen Variablen nicht auf die andere auswirken werden. Das kann wichtig sein, wenn man ein großes Array o. ä. in einer Schleife kopieren muss. PHP 4 unterstützt 'assignement by reference' (Zuweisung als Verweis), mit Hilfe der Schreibweise $var = &$othervar; , das funktioniert jedoch nicht in PHP 3. 'Assignement by ...
PHP Manual
[ Zuweisungsoperatoren php.net ]

PHP Funktion
FrontBase Funktionen ( phplist Code 16% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
...öschen (DROP) einer FrontBase-Datenbank fbsql_errno -- Liefert die numerische Fehlermeldung der der letzten FrontBase-Operation fbsql_error -- Liefert den Fehlertext der zuvor ausgeführten FrontBase-Operation fbsql_fetch_array -- Fetch a result row as an associative array, a numeric array, or both fbsql_fetch_assoc -- Fetch a result row as an associative array fbsql_fetch_field -- Liefert ein Objekt mit Feldinformationen aus einem ...
PHP Manual
[ FrontBase Funktionen php.net ]

PHP Funktion
InterBase-Funktionen ( phplist Code 16% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
...Drops a database ibase_errcode -- Return an error code ibase_errmsg -- Return error messages ibase_execute -- Ausführen einer vorbereiteten Abfrage ibase_fetch_assoc -- Fetch a result row from a query as an associative array ibase_fetch_object -- Liest einen Datensatz einer InterBase-Datenbank als Objekt ein ibase_fetch_row -- Liest einen Datensatz aus einer InterBase-Datenbank ibase_field_info -- Get information about a field ...
PHP Manual
[ InterBase-Funktionen php.net ]

PHP Funktion
MCVE (Monetra) Payment Functions ( phplist Code 16% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... ( integer ) M_FAIL ( integer ) M_SUCCESS ( integer ) Inhaltsverzeichnis m_checkstatus -- Check to see if a transaction has completed m_completeauthorizations -- Number of complete authorizations in queue, returning an array of their identifiers m_connect -- Establish the connection to MCVE m_connectionerror -- Get a textual representation of why a connection failed m_deletetrans -- Delete specified transaction from MCVE_CONN structure ...
PHP Manual
[ MCVE (Monetra) Payment Functions php.net ]

PHP Funktion
add_assoc_stringl_ex ( phplist Code 16% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
int add_assoc_stringl_ex ( zval* arg char* key uint key_len char* str uint length int duplicate ) ...
Vorschau
...add_assoc_stringl_ex add_assoc_stringl_ex add_assoc_stringl_ex -- Add a binary safe string value to an assoc array with binary safe key Beschreibung #include <zend_API.h> int add_assoc_stringl_ex ( zval* arg, char* key, uint key_len, char* str, uint length, int duplicate ) ... Parameter Liste arg ... key ... key_len ... ...
PHP Manual
[ add_assoc_stringl_ex php.net ]

PHP Funktion
add_assoc_unicode_ex ( phplist Code 16% Relevanz )
Rubrik
API Function and Macro reference (work in progress)
Kurzform
int add_assoc_unicode_ex ( zval* arg char* key uint key_len void* str int duplicate ) ...
Vorschau
...add_assoc_unicode_ex add_assoc_unicode_ex add_assoc_unicode_ex -- Add a unicode_string value to an assoc array with binary safe key Beschreibung #include <zend_API.h> int add_assoc_unicode_ex ( zval* arg, char* key, uint key_len, void* str, int duplicate ) ... Parameter Liste arg ... key ... key_len ... str ... ...
PHP Manual
[ add_assoc_unicode_ex php.net ]

PHP Funktion
Calling User Functions ( phplist Code 15% Relevanz )
Rubrik
Extending PHP 3
Kurzform
-----
Vorschau
... the invoked function is saved. The structure must be previously allocated - call_user_function() does NOT allocate it by itself. int param_count The number of parameters being passed to the function. pval *params[] An array of pointers to values that will be passed as arguments to the function, the first argument being in offset 0, the second in offset 1, etc. The array is an array of pointers to pval's; The pointers are sent as-is to the ...
PHP Manual
[ Calling User Functions php.net ]

PHP Funktion
apache_request_headers ( phplist Code 15% Relevanz )
Rubrik
Apache-spezifische Funktionen
Kurzform
apache_request_headers -- Liefert alle HTTP-Header der aktuellen Anfrage
Vorschau
...apache_request_headers apache_request_headers (PHP 4 >= 4.3.0, PHP 5) apache_request_headers -- Liefert alle HTTP-Header der aktuellen Anfrage Beschreibung array apache_request_headers ( void ) Die Funktion apache_request_headers() liefert ein assoziatives Array , das alle HTTP-Header-Informationen der aktuellen HTTP-Anfrage enthält. Diese Funktion wird nur untersstützt, wenn PHP...
PHP Manual
[ apache_request_headers php.net ]

PHP Funktion
cal_info ( phplist Code 15% Relevanz )
Rubrik
Kalender-Funktionen
Kurzform
cal_info -- Gibt Informationen zu einem bestimmten Kalender zurück
Vorschau
...cal_info cal_info (PHP 4 >= 4.1.0, PHP 5) cal_info -- Gibt Informationen zu einem bestimmten Kalender Beschreibung array cal_info ( int calendar ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. cal_from_jd cal_to_jd...
PHP Manual
[ cal_info php.net ]

PHP Funktion