
PHP Funktionen : PHP Übersicht : PHP Manual
count
PHP
Function count / PHP
Funktion count
phplist »
Webkatalog Script - Link Script »
PHP Function Coder »
count
- PHP Funktion
- count ( phplist Code 100% Relevanz )
- Rubrik
- Array Funktionen
- Kurzform
- count -- Zählt die Elemente einer Variable oder Attribute eines Objekts
- Vorschau
- ...count count (PHP 3, PHP 4, PHP 5) count -- Zählt die Elemente einer Variable oder Attribute eines Objekts Beschreibung int count ( mixed var [, int mode] ) Liefert die Anzahl von Elementen in var , welches typischerweise ein Array ist, da alles andere ein Element enthält. Für Objekte, wenn die SPL installiert ist, gibt es die Möglichkeit das ...
- PHP Manual
- [ count php.net ]
- PHP Funktion
- current ( phplist Code 67% Relevanz )
- Rubrik
- Array Funktionen
- Kurzform
- current -- Liefert das aktuelle Element eines Arrays
- Vorschau
- ... = next ( $transport ); // $mode = 'Auto'; $mode = prev ( $transport ); // $mode = 'Fahrrad'; $mode = end ( $transport ); // $mode = 'Flugzeug'; ?> Siehe auch end() , key() , next() , prev() , reset() und each() . count each...
- PHP Manual
- [ current php.net ]
- PHP Funktion
- gmp_popcount ( phplist Code 59% Relevanz )
- Rubrik
- GMP Functions
- Kurzform
- gmp_popcount -- Population count
- Vorschau
- ...gmp_popcount gmp_popcount (PHP 4 >= 4.0.4, PHP 5) gmp_popcount -- Population count Description int gmp_popcount ( resource a ) Return the population count of a . Beispiel 1. gmp_popcount() example <?php $pop1 = gmp_init ( "10000101" , 2 ); // 3 1's echo gmp_popcount ( $pop1 ) . "\n" ; $pop2 = gmp_init ( "11111110" , 2 ); // 7 1's echo gmp_popcount ( $pop2 ) . "\n" ; ?> The printout of the above ...
- PHP Manual
- [ gmp_popcount php.net ]
- PHP Funktion
- iterator_count ( phplist Code 53% Relevanz )
- Rubrik
- Standard PHP Library (SPL) Functions
- Kurzform
- iterator_count -- Count the elements in an iterator
- Vorschau
- ...iterator_count iterator_count (PHP 5 >= 5.1.0RC1) iterator_count -- Count the elements in an iterator Description int iterator_count ( IteratorAggregate iterator ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. class_parents iterator_to_array...
- PHP Manual
- [ iterator_count php.net ]
- PHP Funktion
- msession_count ( phplist Code 53% Relevanz )
- Rubrik
- Mohawk Software Session Handler Funktionen
- Kurzform
- msession_count -- Get session count
- Vorschau
- ...msession_count msession_count (PHP 4 >= 4.2.0, PHP 5) msession_count -- Get session count Beschreibung int msession_count ( void ) Warnung Diese Funktion ist bis jetztnicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung. msession_connect msession_create...
- PHP Manual
- [ msession_count php.net ]
- PHP Funktion
- compact ( phplist Code 50% Relevanz )
- Rubrik
- Array Funktionen
- Kurzform
- compact -- Erstellt ein Array mit Variablen und deren Werten
- Vorschau
- ...staat" ); $result = compact ( "ereignis" , "nichts_hier" , $location_vars ); ?> Danach wird $result : Array ( [ereignis] => SIGGRAPH [stadt] => San Francisco [staat] => CA ) Siehe auch extract() . asort count...
- PHP Manual
- [ compact php.net ]
- PHP Funktion
- mb_substr_count ( phplist Code 50% Relevanz )
- Rubrik
- Multibyte String Functions
- Kurzform
- mb_substr_count -- Count the number of substring occurrences
- Vorschau
- ...mb_substr_count mb_substr_count (PHP 4 >= 4.3.0, PHP 5) mb_substr_count -- Count the number of substring occurrences Description int mb_substr_count ( string haystack, string needle [, string encoding] ) mb_substr_count() returns the number of times the needle substring occurs in the haystack string. encoding specifies the encoding for needle and haystack . If omitted, internal character encoding is used. Beispiel 1. mb_substr_count() ...
- PHP Manual
- [ mb_substr_count php.net ]
- PHP Funktion
- iconv Funktionen ( phplist Code 48% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... at once iconv_mime_decode -- Decodes a MIME header field iconv_mime_encode -- Composes a MIME header field iconv_set_encoding -- Einstellungen für die Zeichensatzkonvertierung setzen iconv_strlen -- Returns the character count of string iconv_strpos -- Finds position of first occurrence of a needle within a haystack iconv_strrpos -- Finds the last occurrence of a needle within a haystack iconv_substr -- Cut out part of a string iconv -- ...
- PHP Manual
- [ iconv Funktionen php.net ]
- PHP Funktion
- iconv_strlen ( phplist Code 47% Relevanz )
- Rubrik
- iconv Funktionen
- Kurzform
- iconv_strlen -- Returns the character count of string
- Vorschau
- ...iconv_strlen iconv_strlen (PHP 5) iconv_strlen -- Returns the character count of string Description int iconv_strlen ( string str [, string charset] ) Returns the character count of str . In contrast to strlen() , iconv_strlen() counts the occurrences of characters in the given byte sequence str on the basis of the specified character set, the result of which is not necessarily identical to the ...
- PHP Manual
- [ iconv_strlen php.net ]
- PHP Funktion
- SDO Functions ( phplist Code 44% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ...using the sequence index. The following sets the firstName to 'Snappy' and gets the last sequence values (the unstructured text, 'Your premium is past due.'). <?php $letter_seq [ 4 ] = 'Snappy' ; $text = $letter_seq [ count ( $letter_seq ) - 1 ]; ?> Beispiel 17. Sequence iteration We can iterate through the individual sequence values using foreach. The following runs through the individual values in sequence order. <?php foreach ( $...
- PHP Manual
- [ SDO Functions php.net ]
- PHP Funktion
- zend_wrong_param_count ( phplist Code 37% Relevanz )
- Rubrik
- API Function and Macro reference (work in progress)
- Kurzform
- void zend_wrong_param_count ( magic TSRMLS_D )
zend_wrong_param_count() produces a standard warning message for functions or class methods that have been called with a wrong number of parameters. The function automaticly puts the right function name and class name (if needed) into the error message.
Usually the ZEND_WRONG_PARAM_COUNT() and ZEND_WRONG_PARAM_COUNT_WITH_RETVAL() macros are used to invoke this function instead of calling it immediately as this saves typing the TSRMLS_C argument.
- Vorschau
- ...zend_wrong_param_count zend_wrong_param_count zend_wrong_param_count -- Generate standard error message for wrong parameter count in function or method call Beschreibung #include <zend_API.h> void zend_wrong_param_count ( magic TSRMLS_D ) zend_wrong_param_count() produces a standard warning message for functions or class methods that have ...
- PHP Manual
- [ zend_wrong_param_count php.net ]
- PHP Funktion
- New Functions ( phplist Code 33% Relevanz )
- Rubrik
- Migrating from PHP 4 to PHP 5
- Kurzform
- -----
- Vorschau
- ... : iconv_mime_decode() - Decodes a MIME header field iconv_mime_decode_headers() - Decodes multiple MIME header fields at once iconv_mime_encode() - Composes a MIME header field iconv_strlen() - Returns the character count of string iconv_strpos() - Finds position of first occurrence of a needle within a haystack iconv_strrpos() - Finds the last occurrence of a needle within a haystack iconv_substr() - Cut out part of a string Streams...
- PHP Manual
- [ New Functions php.net ]
- PHP Funktion
- GMP Functions ( phplist Code 33% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... -- Legendre symbol gmp_mod -- Modulo operation gmp_mul -- Multiply numbers gmp_neg -- Negate number gmp_nextprime -- Find next prime number gmp_or -- Logical OR gmp_perfect_square -- Perfect square check gmp_popcount -- Population count gmp_pow -- Raise number into power gmp_powm -- Raise number into power with modulo gmp_prob_prime -- Check if number is "probably prime" gmp_random -- Random number gmp_scan0 -- Scan for 0 gmp_scan1...
- PHP Manual
- [ GMP Functions php.net ]
- PHP Funktion
- Informix Funktionen ( phplist Code 33% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... alle Zeilen einer Abfrage als HTML-Tabelle formatiert ifx_nullformat -- Setzt den aktuellen Rückgabewert für Nullwerte beim Lesen von Zeilen ifx_num_fields -- Gibt die Anzahl der Spalten einer Abfrage ifx_num_rows -- Count the rows already fetched from a query ifx_pconnect -- Öffnet eine persistente Informix Verbindung ifx_prepare -- Bereitet eine Abfrage zur späteren Ausführung vor ifx_query -- Schickt eine Informix Abfrage an den Server ...
- PHP Manual
- [ Informix Funktionen php.net ]
- PHP Funktion
- YAZ Functions ( phplist Code 33% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ...prints a query form; else (arguments are supplied) it searches the targets as given in array host . Beispiel 3. Parallel searching using Yaz <?php $host = $_REQUEST [ host ]; $query = $_REQUEST [ query ]; $num_hosts = count ( $host ); if (empty( $query ) || count ( $host ) == 0 ) { echo '<form method="get"> <input type="checkbox" name="host[]" value="bagel.indexdata.dk/gils" /> GILS test <input type="checkbox" name="host[]" ...
- PHP Manual
- [ YAZ Functions php.net ]
- PHP Funktion
- Accepting Arguments ( phplist Code 33% Relevanz )
- Rubrik
- Zend API: Hacking the Core of PHP
- Kurzform
- -----
- Vorschau
- ...stripped down to a dummy macro (see its definition in zend_API.h ). But it's still good practice to use it, to remain compatible with future changes in the call interface. Note: The old PHP equivalent of this macro is ARG_COUNT . The following code checks for the correct number of arguments: if(ZEND_NUM_ARGS() != 2) WRONG_PARAM_COUNT; If the function is not called with two arguments, it exits with an error message. The code snippet above makes ...
- PHP Manual
- [ Accepting Arguments php.net ]
- PHP Funktion
- sybase_deadlock_retry_count ( phplist Code 31% Relevanz )
- Rubrik
- Sybase Funktionen
- Kurzform
- sybase_deadlock_retry_count -- Sets the deadlock retry count
- Vorschau
- ...sybase_deadlock_retry_count sybase_deadlock_retry_count (PHP 4 >= 4.3.0, PHP 5) sybase_deadlock_retry_count -- Sets the deadlock retry count Description void sybase_deadlock_retry_count ( int retry_count ) Using sybase_deadlock_retry_count() , the number of retries can be defined in cases of deadlocks. By default, every deadlock is retried an infinite number of times or until the process is killed by Sybase, the executing...
- PHP Manual
- [ sybase_deadlock_retry_count php.net ]
- PHP Funktion
- IRC Gateway Funktionen ( phplist Code 30% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... nickname to channel ircg_is_conn_alive -- Check connection status ircg_join -- Einen Channel auf dem verbundenen IRC-Server betreten ircg_kick -- Entfernt einen Benutzer aus einem Channel ircg_list -- List topic/user count of channel(s) ircg_lookup_format_messages -- Wählt ein Format für die Ausgabe von IRC-Nachrichten und Ereignissen aus. ircg_lusers -- IRC network statistics ircg_msg -- Sendet eine Nachricht an einen Channel oder Benutzer...
- PHP Manual
- [ IRC Gateway Funktionen php.net ]
- PHP Funktion
- Calling User Functions ( phplist Code 30% Relevanz )
- Rubrik
- Zend API: Hacking the Core of PHP
- Kurzform
- -----
- Vorschau
- ...arguments, argument array, and a flag indicating whether you want to perform zval separation. ZEND_API int call_user_function_ex(HashTable *function_table, zval *object,zval *function_name, zval **retval_ptr_ptr,int param_count, zval **params[],int no_separation); Note that you don't have to specify both function_table and object ; either will do. If you want to call a method, you have to supply the object that contains this method, in which ...
- PHP Manual
- [ Calling User Functions php.net ]
- PHP Funktion
- cal_to_jd ( phplist Code 29% Relevanz )
- Rubrik
- Kalender-Funktionen
- Kurzform
- cal_to_jd -- Converts from a supported calendar to Julian Day Count
- Vorschau
- ...cal_to_jd cal_to_jd (PHP 4 >= 4.1.0, PHP 5) cal_to_jd -- Converts from a supported calendar to Julian Day Count Description int cal_to_jd ( int calendar, int month, int day, int year ) cal_to_jd() calculates the Julian day count for a date in the specified calendar . Supported calendar s are CAL_GREGORIAN , CAL_JULIAN , CAL_JEWISH...
- PHP Manual
- [ cal_to_jd php.net ]
- PHP Funktion
- ircg_list ( phplist Code 29% Relevanz )
- Rubrik
- IRC Gateway Funktionen
- Kurzform
- ircg_list -- List topic/user count of channel(s)
- Vorschau
- ...ircg_list ircg_list (PHP 4 >= 4.3.3, PHP 5 <= 5.0.4) ircg_list -- List topic/user count of channel(s) Description bool ircg_list ( resource connection, string channel ) ircg_list() will request a list of users in the channel . The answer is sent to the output defined by ircg_set_file() or ircg_set_current...
- PHP Manual
- [ ircg_list php.net ]
- PHP Funktion
- urldecode ( phplist Code 29% Relevanz )
- Rubrik
- URL Funktionen
- Kurzform
- urldecode -- Dekodiert eine URL-kodierte Zeile
- Vorschau
- ...string str ) Dekodiert jede % ## Kodierung einer gegebenen Zeichenkette. Der dekodierte String wird gegeben. Beispiel 1. urldecode() -Beispiel <?php $a = explode ( '&' , $QUERY_STRING ); $i = 0 ; while ( $i < count ( $a )) { $b = split ( '=' , $a [ $i ]); echo 'Der Wert von Parameter ' , htmlspecialchars ( urldecode ( $b [ 0 ])), ' ist ' , htmlspecialchars ( urldecode ( $b [ 1 ])), "<br />\n" ; $i ++; } ?> Siehe auch ...
- PHP Manual
- [ urldecode php.net ]
- PHP Funktion
- Array Funktionen ( phplist Code 29% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... als Strings zu sortieren. SORT_LOCALE_STRING ( integer ) SORT_LOCALE_STRING wird benützt, um Elemente als Strings basierend auf der aktuellen lokalen Einstellungen zu sortieren. In PHP 4.4.0 und 5.0.2 hinzugefügt. COUNT_NORMAL ( integer ) COUNT_RECURSIVE ( integer ) EXTR_OVERWRITE ( integer ) EXTR_SKIP ( integer ) EXTR_PREFIX_SAME ( integer ) EXTR_PREFIX_ALL ( integer ) EXTR_PREFIX_INVALID ( integer ) EXTR_PREFIX_IF_EXISTS ( ...
- PHP Manual
- [ Array Funktionen php.net ]
- PHP Funktion
- DomNode->get_content ( phplist Code 28% Relevanz )
- Rubrik
- DOM XML Funktionen
- Kurzform
- DomNode->get_content -- Gets content of node
- Vorschau
- ... (! $dom = domxml_open_mem ( $xmlstr )) { echo "Error while parsing the document\n" ; exit; } $root = $dom -> document_element (); $node_array = $root -> get_elements_by_tagname ( "element" ); for ( $i = 0 ; $i < count ( $node_array ); $i ++) { $node = $node_array [ $i ]; echo "The element [ $i ] is: " . $node -> get_content (); } ?> DomNode->first_child DomNode->has_attributes...
- PHP Manual
- [ DomNode->get_content php.net ]
- PHP Funktion
- PDOStatement->columnCount() ( phplist Code 28% Relevanz )
- Rubrik
- PDO-Funktionen
- Kurzform
- PDOStatement->columnCount() -- Returns the number of columns in the result set
- Vorschau
- ...PDOStatement->columnCount() closeCursor()"HREF="function.pdostatement-closecursor.html"> errorCode()"HREF="function.pdostatement-errorcode.html"> PDOStatement->columnCount() (no version information, might be only in CVS) PDOStatement->columnCount() -- Returns the number of columns in the result set Beschreibung class PDOStatement { int columnCount ( void ) } Use PDOStatement->...
- PHP Manual
- [ PDOStatement->columnCount() php.net ]
- PHP Funktion
- yaz_record ( phplist Code 27% Relevanz )
- Rubrik
- YAZ Functions
- Kurzform
- yaz_record -- Returns a record
- Vorschau
- ... position specified by parameter pos . Parameter Liste id The connection resource returned by yaz_connect() . pos The record position. Records positions in a result set are numbered 1, 2, ... $hits where $hits is the count returned by yaz_hits() . type The type specifies the form of the returned record. Anmerkung: It is the application which is responsible for actually ensuring that the records are returned from the Z39.50/SRW server in ...
- PHP Manual
- [ yaz_record php.net ]
- PHP Funktion
- Reflection ( phplist Code 27% Relevanz )
- Rubrik
- Klassen und Objekte (PHP 5)
- Kurzform
- -----
- Vorschau
- ... erzeugen. Danach kann man jede der oben aufgeführten Methoden dieser Instanz aufrufen. Beispiel 19-34. Die ReflectionFunction Klasse benutzen <?php /** * Ein einfacher Zähler * * @return int */ function counter () { static $c = 0 ; return $c ++; } // Erzeuge eine neue Instanz der ReflectionFunction Klasse $func = new ReflectionFunction ( 'counter' ); // Grundlegende Informationen ausgeben printf ( "===> Die %s Funktion '%s...
- PHP Manual
- [ Reflection php.net ]
- PHP Funktion
- Sybase Funktionen ( phplist Code 27% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... sybct.max_persistent "-1" PHP_INI_SYSTEM sybct.max_links "-1" PHP_INI_SYSTEM sybct.min_server_severity "10" PHP_INI_ALL sybct.min_client_severity "10" PHP_INI_ALL sybct.hostname NULL PHP_INI_ALL sybct.deadlock_retry_count "-1" PHP_INI_ALL Hier eine kurze Erklärung derKonfigurationsoptionen: sybct.allow_persistent boolean Whether to allow persistent Sybase-CT connections. The default is on. sybct.max_persistent integer The maximum number...
- PHP Manual
- [ Sybase Funktionen 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 , ...
- PHP Manual
- [ cal_from_jd php.net ]
- PHP Funktion
- Kalender-Funktionen ( phplist Code 25% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... finden Sie in der Datei dl/README. Inhaltsverzeichnis cal_days_in_month -- Gibt die Anzahl der Tage eines bestimmten Monats in einem bestimmten Jahr in einem bestimmten Kalender cal_from_jd -- Converts from Julian Day Count to a supported calendar cal_info -- Gibt Informationen zu einem bestimmten Kalender cal_to_jd -- Converts from a supported calendar to Julian Day Count easter_date -- Zeitpunkt des Osterfestes (0 Uhr) als UNIX-Timestamp ...
- PHP Manual
- [ Kalender-Funktionen php.net ]
- PHP Funktion
- PHP benutzen ( phplist Code 24% Relevanz )
- Rubrik
- FAQ: Frequently Asked Questions
- Kurzform
- -----
- Vorschau
- ... ] = $varvalue ; } else { $post [ $varname ] = $varvalue ; } } print "<pre>" ; if (empty( $empty )) { print "Keiner der POST-Werte ist leer. Die Werte sind:\n" ; var_dump ( $post ); } else { print "Wir haben " . count ( $empty ) . " leere Werte:\n" ; print "Alle Werte:\n" ; var_dump ( $post ); print "Leer:\n" ; var_dump ( $empty ); exit; } ?> Superglobals: Hinweis zurVerfügbarkeit: Seit PHP 4.1.0 stehen superglobale Arrays wie $_GET...
- PHP Manual
- [ PHP benutzen php.net ]
- PHP Funktion
- udm_cat_list ( phplist Code 24% Relevanz )
- Rubrik
- mnoGoSearch Funktionen
- Kurzform
- udm_cat_list -- Liefert alle Kategorien auf der selben Ebene wie der aktuellen zurück.
- Vorschau
- ...' $array[5] beinhaltet 'Opel' ... usw. Das folgende Beispiel gibt Links im folgenden Format aus: Audi BMW Opel ... <?php $cat_list_arr = udm_cat_list ( $udm_agent , $cat ); $cat_list = '' ; for ( $i = 0 ; $i & lt ; count ( $cat_list_arr ); $i += 2 ) { $path = $cat_list_arr [ $i ]; $name = $cat_list_arr [ $i + 1 ]; $cat_list .= "<a href= \" $PHP_SELF?cat=$path \" >$name</a><br>" ; } ?> udm_api_version udm_cat_path...
- PHP Manual
- [ udm_cat_list 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
- ... den Pfad zu der aktuellen Kategorie in folgendem Format: '> Root > Sport > Auto > Ferrari' <?php $cat_path_arr = udm_cat_path ( $udm_agent , $cat ); $cat_path = '' ; for ( $i = 0 ; $i & lt ; count ( $cat_path_arr ); $i += 2 ) { $path = $cat_path_arr [ $i ]; $name = $cat_path_arr [ $i + 1 ]; $cat_path .= " > <a href= \" $PHP_SELF?cat=$path \" >$name</a> " ; } ?> udm_cat_list udm_check_charset...
- PHP Manual
- [ udm_cat_path php.net ]
- PHP Funktion
- XML Parser Functions ( phplist Code 24% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ...integer ) Event Handlers The XML event handlers defined are: Tabelle 1. Supported XML handlers PHP function to set handler Event description xml_set_element_handler() Element events are issued whenever the XML parser encounters start or end tags. There are separate handlers for start tags and end tags. xml_set_character_data_handler() Character data is roughly all the non-markup contents of XML documents, including whitespace between tags. ...
- PHP Manual
- [ XML Parser Functions php.net ]
- PHP Funktion
- stream_copy_to_stream ( phplist Code 23% Relevanz )
- Rubrik
- Stream Functions
- Kurzform
- stream_copy_to_stream -- Copies data from one stream to another
- Vorschau
- ... content in source will be copied. Parameter Liste source The source stream dest The destination stream maxlength Maximum bytes to copy offset The offset where to start to copy data Rückgabewerte Returns the total count of bytes copied. ChangeLog Version Beschreibung 5.1.0 Added the offset parameter Beispiele Beispiel 1. A stream_copy_to_stream() example <?php $src = fopen ( 'http://www.example.com' , 'r' ); $dest1 = fopen ( '...
- PHP Manual
- [ stream_copy_to_stream php.net ]
- PHP Funktion
- Pattern Syntax ( phplist Code 21% Relevanz )
- Rubrik
- Reguläre Ausdrücke Funktionen (Perl-kompatibel)
- Kurzform
- -----
- Vorschau
- ...For example, (?!a){3} does not assert that the next three characters are not "a". It just asserts that the next character is not "a" three times. Capturing subpatterns that occur inside negative lookahead assertions are counted, but their entries in the offsets vector are never set. Perl sets its numerical variables from any such patterns that are matched before the assertion fails to match something (thereby succeeding), but only if the ...
- PHP Manual
- [ Pattern Syntax php.net ]
- PHP Funktion
- Objektiteration ( phplist Code 20% Relevanz )
- Rubrik
- Klassen und Objekte (PHP 5)
- Kurzform
- -----
- Vorschau
- ... das PHP 5 IteratorAggregate Interface implementiert. Beispiel 19-24. Objektiteration mit implementiertem IteratorAggregate <?php class MyCollection implements IteratorAggregate { private $items = array(); private $count = 0 ; // benötigte Funktion des IteratorAggregate Interface public function getIterator () { return new MyIterator ( $this -> items ); } public function add ( $value ) { $this -> items [ $this -> count ++] = $...
- PHP Manual
- [ Objektiteration php.net ]
- PHP Funktion
- Error Handling and Logging Functions ( phplist Code 20% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... User Error" , $err ); } } function distance ( $vect1 , $vect2 ) { if (! is_array ( $vect1 ) || ! is_array ( $vect2 )) { trigger_error ( "Incorrect parameters, arrays expected" , E_USER_ERROR ); return NULL ; } if ( count ( $vect1 ) != count ( $vect2 )) { trigger_error ( "Vectors need to be of the same size" , E_USER_ERROR ); return NULL ; } for ( $i = 0 ; $i < count ( $vect1 ); $i ++) { $c1 = $vect1 [ $i ]; $c2 = $vect2 [ $i ]; $d = 0....
- PHP Manual
- [ Error Handling and Logging Functions php.net ]
- PHP Funktion
- zend_unregister_functions ( phplist Code 20% Relevanz )
- Rubrik
- API Function and Macro reference (work in progress)
- Kurzform
- void zend_unregister_functions ( zend_function_entry* functions int count HashTable* function_table magic TSRMLS_DC )
...
- Vorschau
- ...zend_unregister_functions zend_unregister_functions zend_unregister_functions -- ... Beschreibung #include <zend_API.h> void zend_unregister_functions ( zend_function_entry* functions, int count, HashTable* function_table, magic TSRMLS_DC ) ... Parameter Liste functions ... count ... function_table ... TSRMLS_DC ... Rückgabewerte ... zend_unmangle_property_name zend_unregister_ini_entries...
- PHP Manual
- [ zend_unregister_functions 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 , $rec [ "date" ], "n/d/Y" ). "\n" ; } px_close ( $px ); px_delete ( $px ); ?> Das oben gezeigte Beispiel erzeugt folgendeAusgabe: 2/21/2006 21:42:302/21/20062/21/2006 20:42:302/21/2006 The Julian day count as passed to jdtogregorian() has a different base of 1.1.4714 b.c. and must therefore be calculated by adding 1721425 to the day count used in the paradox file. Turning the day count into a timestamp is easily done by ...
- PHP Manual
- [ px_insert_record php.net ]
- PHP Funktion
- Multibyte String Functions ( phplist Code 19% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- .... See also mb_detect_order() . mbstring.substitute_character string Defines character to substitute for invalid character encoding. mbstring.func_overload string Overloads a set of single byte functions by the mbstring counterparts. See Function overloading for more information. mbstring.strict_detection boolean Enables the strict encoding detection. According to the HTML 4.01 specification , Web browsers are allowed to encode a form being ...
- PHP Manual
- [ Multibyte String Functions php.net ]
- PHP Funktion
- win32_ps_stat_mem ( phplist Code 18% Relevanz )
- Rubrik
- win32ps Functions
- Kurzform
- win32_ps_stat_mem -- Stat memory utilization
- Vorschau
- ... FALSE on failure, or an array consisting of the following information on success: load The current memory load in percent of physical memory. unit This is always 1024, and indicates that the following values are the count of 1024 bytes. total_phys The amount of total physical memory. avail_phys The amount of still available physical memory. total_pagefile The amount of total pageable memory (physical memory + paging file). ...
- PHP Manual
- [ win32_ps_stat_mem php.net ]
- PHP Funktion
- Radius ( phplist Code 18% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ...Radius CXXX. Radius Einführung This package is based on the libradius of FreeBSD. This PECL adds full support for Radius Authentication ( RFC 2865 ) and Radius Accounting ( RFC 2866 ). This package is available for Unix (tested on FreeBSD and Linux) and for Windows. Anmerkung: An exact description for libradius can be found here . A detailed description of the configuration file can be ...
- PHP Manual
- [ Radius php.net ]
- PHP Funktion
- fgetcsv ( phplist Code 17% Relevanz )
- Rubrik
- Funktionen des Dateisystems
- Kurzform
- fgetcsv -- Liest eine Zeile von der Position des Dateizeigers und prüft diese auf Komma-Separierte-Werte (CSV)
- Vorschau
- ...1 ; // Anzahl der Arrays $handle = fopen ( "test.csv" , "r" ); // Datei zum Lesen öffnen while ( ( $data = fgetcsv ( $handle , 1000 , "," )) !== FALSE ) { // Daten werden aus der Datei // in ein Array $data gelesen $num = count ( $data ); // Felder im Array $data // werden gezählt print "<p> $num fields in line $row: <br> \n " ; $row ++; // Anzahl der Arrays wird // inkrementiert for ( $c = 0 ; $c < $num ; $c ++) { // FOR-Schleife...
- PHP Manual
- [ fgetcsv php.net ]
- PHP Funktion
- hw_api->object ( phplist Code 17% Relevanz )
- Rubrik
- Hyperwave API Functions
- Kurzform
- hw_api->object -- Retrieve attribute information
- Vorschau
- ..." ; break; case 2 : echo "Message" ; break; } echo "</b><br />\n" ; echo "Description: " . $reason -> description ( "en" ) . "<br />\n" ; } function list_attr ( $obj ) { echo "<table>\n" ; $count = $obj -> count (); for ( $i = 0 ; $i < $count ; $i ++) { $attr = $obj -> attribute ( $i ); printf ( "<tr><td align=\"right\" bgcolor=\"#c0c0c0\"><b>%s</b></td><td bgcolor=\"#...
- PHP Manual
- [ hw_api->object php.net ]
- PHP Funktion
- Mohawk Software Session Handler Funktionen ( phplist Code 17% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ...r die PHP-Webseiten zur Verfügung zu stellen. Die Session Serversoftware finden Sie unter http://www.mohawksoft.org/?q=node/8 . Inhaltsverzeichnis msession_connect -- Baut eine Verbindung zum msession-Server auf msession_count -- Get session count msession_create -- Erstellt eine Session msession_destroy -- Zerstört eine Session msession_disconnect -- Schließt eine Verbindung zum msession-Server msession_find -- Sucht nach einen Wert ...
- PHP Manual
- [ Mohawk Software Session Handler Funktionen php.net ]
- PHP Funktion
- Creating Variables ( phplist Code 17% Relevanz )
- Rubrik
- Zend API: Hacking the Core of PHP
- Kurzform
- -----
- Vorschau
- ... */ The macro MAKE_STD_ZVAL allocates a new zval container using ALLOC_ZVAL and initializes it using INIT_ZVAL . As implemented in Zend at the time of this writing, initializing means setting the reference count to 1 and clearing the is_ref flag, but this process could be extended later - this is why it's a good idea to keep using MAKE_STD_ZVAL instead of only using ALLOC_ZVAL . If you want to optimize for speed (and you don't ...
- PHP Manual
- [ Creating Variables php.net ]
- PHP Funktion
- xml_parse_into_struct ( phplist Code 15% Relevanz )
- Rubrik
- XML Parser Functions
- Kurzform
- xml_parse_into_struct -- Parse XML data into an array structure
- Vorschau
- ... foreach ( $tags as $key => $val ) { if ( $key == "molecule" ) { $molranges = $val ; // each contiguous pair of array entries are the // lower and upper range for each molecule definition for ( $i = 0 ; $i < count ( $molranges ); $i += 2 ) { $offset = $molranges [ $i ] + 1 ; $len = $molranges [ $i + 1 ] - $offset ; $tdb [] = parseMol ( array_slice ( $values , $offset , $len )); } } else { continue; } } return $tdb ; } function ...
- PHP Manual
- [ xml_parse_into_struct php.net ]
- PHP Funktion
- yaz_hits ( phplist Code 15% Relevanz )
- Rubrik
- YAZ Functions
- Kurzform
- yaz_hits -- Returns number of hits for last search
- Vorschau
- .... The search result array (if supplied) holds information that is returned by a Z39.50 server in the SearchResult-1 format part of a search response. The SearchResult-1 format can be used to obtain information about hit counts for various parts of the query (subquery). In particular, it is possible to obtain hit counts for the individual search terms in a query. Information for first subquery is in $array[0], second subquery in $array[1], and ...
- PHP Manual
- [ yaz_hits php.net ]
- PHP Funktion
- pdo_stmt_t definition ( phplist Code 15% Relevanz )
- Rubrik
- PDO Driver How-To
- Kurzform
- -----
- Vorschau
- ... of columns in the result set; not valid until after * the statement has been executed at least once. In some cases, might * not be valid until fetch (at the driver level) has been called at least once. * */ int column_count; struct pdo_column_data *columns; /* points at the dbh that this statement was prepared on */ pdo_dbh_t *dbh; /* keep track of bound input parameters. Some drivers support * input/output parameters, but you can't rely on ...
- PHP Manual
- [ pdo_stmt_t definition php.net ]
- PHP Funktion
- dba Datenbank (dbm-style) Abstraktions-Funktionen ( phplist Code 15% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ...Oeffnen der Datenbank... $key = dba_firstkey ( $id ); while ( $key != false ) { if (...) { # den Schluessel fuer spaetere Aktionen merken $handle_later [] = $key ; } $key = dba_nextkey ( $id ); } for ( $i = 0 ; $i < count ( $handle_later ); $i ++) dba_delete ( $handle_later [ $i ], $id ); ?> Inhaltsverzeichnis dba_close -- Datenbank schließen dba_delete -- Löschen des zu key gehörigen Eintrages dba_exists -- Überprüfen, ob Datensatz mit...
- PHP Manual
- [ dba Datenbank (dbm-style) Abstraktions-Funktionen php.net ]
- PHP Funktion
- Standard PHP Library (SPL) Functions ( phplist Code 15% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... ArrayIterator::seek -- Seek to position ArrayIterator::valid -- Check whether array contains more entries ArrayObject::append -- Appends the value ArrayObject::__construct -- Construct a new array object ArrayObject::count -- Return the number of elements in the Iterator ArrayObject::getIterator -- Create a new iterator from an ArrayObject instance ArrayObject::offsetExists -- Returns whether the requested $index exists ArrayObject::...
- PHP Manual
- [ Standard PHP Library (SPL) Functions php.net ]
- PHP Funktion
- DOMXPath->evaluate() ( phplist Code 14% Relevanz )
- Rubrik
- DOM Functions
- Kurzform
- DOMXPath->evaluate() -- Evaluates the given XPath expression and returns a typed result if possible.
- Vorschau
- .... By default, the queries are relative to the root element. Rückgabewerte Returns a typed result if possible or a DOMNodeList containing all nodes matching the given XPath expression . Beispiele Beispiel 1. Getting the count of all the english books <?php $doc = new DOMDocument ; $doc -> load ( 'book.xml' ); $xpath = new DOMXPath ( $doc ); $tbody = $doc -> getElementsByTagName ( 'tbody' )-> item ( 0 ); // our query is relative to ...
- PHP Manual
- [ DOMXPath->evaluate() php.net ]
- PHP Funktion
- imap_append ( phplist Code 13% Relevanz )
- Rubrik
- IMAP POP3 und NNTP Funktionen
- Kurzform
- imap_append -- Fügt eine String-Nachricht an das angegebene Postfach an.
- Vorschau
- ... die Flags der Nachricht in der Mailbox entsprechend gesetzt. Beispiel 1. imap_append() Beispiel $stream = imap_open ("{your.imap.host}INBOX.Drafts", "username", "password"); $check = imap_check ($stream); print "Msg Count before append: " . $check->Nmsgs . "<br>\n"; imap_append( $stream, "{your.imap.host}INBOX.Drafts" , "From: me@my.host\r\n" . "To: you@your.host\r\n" . "Subject: test\r\n" . "\r\n" . "Das ist ein Test, bitte ...
- PHP Manual
- [ imap_append php.net ]
- PHP Funktion
- shmop_read ( phplist Code 13% Relevanz )
- Rubrik
- Shared Memory Funktionen (Gemeinsamer Speicher)
- Kurzform
- shmop_read -- Daten aus dem gemeinsamen Speicherblock auslesen
- Vorschau
- ...shmop_read shmop_read (PHP 4 >= 4.0.4, PHP 5) shmop_read -- Daten aus dem gemeinsamen Speicherblock auslesen Beschreibung string shmop_read ( int shmid, int start, int count ) shmop_read() liest einen String aus dem gemeinsamen Speicherblock. shmop_read() braucht 3 Parameter: shmid, die Kennung des gemeinsamen Speicherblocks, der mit shmop_open() erzeugt wurde, start gibt den Offset an, von...
- PHP Manual
- [ shmop_read php.net ]
- PHP Funktion
- str_replace ( phplist Code 13% Relevanz )
- Rubrik
- String-Funktionen
- Kurzform
- str_replace -- Ersetzt alle Vorkommen des Suchstrings durch einen anderen String
- Vorschau
- ... str_replace (PHP 3 >= 3.0.6, PHP 4, PHP 5) 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 ...
- PHP Manual
- [ str_replace php.net ]
- PHP Funktion
- array_splice ( phplist Code 12% Relevanz )
- Rubrik
- Array Funktionen
- Kurzform
- array_splice -- Entfernt einen Teil eines Arrays und ersetzt ihn durch etwas anderes
- Vorschau
- ... negativ, dann wird der Bereich von length Elementen vor dem Ende, bis zum Ende des Arrays entfernt. Tipp: Um alles von offset bis zum Ende des Arrays zu entfernen wenn replacement ebenfalls angegeben ist, verwenden Sie count($input) als length . Ist das Array replacement angegeben, werden die entfernten Elemente durch die Elemente dieses Arrays ersetzt. Sind offset und length so angegeben dass nichts entfernt wird, werden die Elemente von ...
- PHP Manual
- [ array_splice php.net ]
- PHP Funktion
- db2_rollback ( phplist Code 12% Relevanz )
- Rubrik
- IBM DB2 Cloudscape and Apache Derby Functions
- Kurzform
- db2_rollback -- Rolls back a transaction
- Vorschau
- ... resource variable as returned from db2_connect() or db2_pconnect() . Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Beispiele Beispiel 1. Rolling back a DELETE statement In the following example, we count the number of rows in a table, turn off AUTOCOMMIT mode on a database connection, delete all of the rows in the table and return the count of 0 to prove that the rows have been removed. We then issue db2_rollback() and ...
- PHP Manual
- [ db2_rollback php.net ]
- PHP Funktion
- ifx_num_rows ( phplist Code 12% Relevanz )
- Rubrik
- Informix Funktionen
- Kurzform
- ifx_num_rows -- Count the rows already fetched from a query
- Vorschau
- ...ifx_num_rows ifx_num_rows (PHP 3 >= 3.0.3, PHP 4, PHP 5) ifx_num_rows -- Count the rows already fetched from a query Beschreibung int ifx_num_rows ( int result_id ) Gibt nach der Ausführung von ifx_query() oder ifx_do() die Anzahl der Zeilen in der durch result_id gegebenen Ergebnismenge . ...
- PHP Manual
- [ ifx_num_rows php.net ]
- PHP Funktion
- ncurses_scrl ( phplist Code 12% Relevanz )
- Rubrik
- Ncurses Terminal Screen Control Functions
- Kurzform
- ncurses_scrl -- Scroll window content up or down without changing current position
- Vorschau
- ...ncurses_scrl ncurses_scrl (PHP 4 >= 4.1.0, PHP 5) ncurses_scrl -- Scroll window content up or down without changing current position Description int ncurses_scrl ( int count ) 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 Sie ...
- PHP Manual
- [ ncurses_scrl php.net ]
- PHP Funktion
- str_ireplace ( phplist Code 12% Relevanz )
- Rubrik
- String-Funktionen
- Kurzform
- str_ireplace -- Groß- und Kleinschreibungsunabhängige Version von str_replace().
- Vorschau
- ...str_ireplace str_ireplace (PHP 5) 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...
- PHP Manual
- [ str_ireplace php.net ]
- PHP Funktion
- yaz_set_option ( phplist Code 11% Relevanz )
- Rubrik
- YAZ Functions
- Kurzform
- yaz_set_option -- Sets one or more options for connection
- Vorschau
- ...() start offset for first record to be retrieved via yaz_search() or yaz_present() . First record is numbered has a start value of 0. Second record has start value 1. Setting this option in combination with option count has the same effect as calling yaz_range() except that records are numbered from 1 in yaz_range() count maximum number of records to be retrieved via yaz_search() or yaz_present() . elementSetName element-set-name for ...
- PHP Manual
- [ yaz_set_option php.net ]
- PHP Funktion
- API Function and Macro reference (work in progress) ( phplist Code 11% Relevanz )
- Rubrik
- Zend API: Hacking the Core of PHP
- Kurzform
- -----
- Vorschau
- ... -- ... zend_update_static_property_stringl -- ... zend_update_static_property_unicode -- ... zend_update_static_property_unicodel -- ... zend_update_static_property -- ... zend_ustrndup -- ... zend_wrong_param_count -- Generate standard error message for wrong parameter count in function or method call zend_zval_type_name -- Returns the PHP type name for a given zval zval_add_ref -- ... zval_internal_dtor -- ... ...
- PHP Manual
- [ API Function and Macro reference (work in progress) php.net ]
- PHP Funktion
- DOMCharacterData->deleteData() ( phplist Code 10% Relevanz )
- Rubrik
- DOM Functions
- Kurzform
- DOMCharacterData->deleteData() -- Remove a range of characters from the node
- Vorschau
- ...->deleteData() (no version information, might be only in CVS) DOMCharacterData->deleteData() -- Remove a range of characters from the node Beschreibung class DOMCharacterData { void deleteData ( int offset, int count ) } Deletes count characters starting from position offset . Parameter Liste offset The offset from which to start removing. count The number of characters to delete. If the sum of offset and count exceeds the length...
- PHP Manual
- [ DOMCharacterData->deleteData() php.net ]
- PHP Funktion
- DOMCharacterData->replaceData() ( phplist Code 10% Relevanz )
- Rubrik
- DOM Functions
- Kurzform
- DOMCharacterData->replaceData() -- Replace a substring within the DOMCharacterData node
- Vorschau
- ...() (no version information, might be only in CVS) DOMCharacterData->replaceData() -- Replace a substring within the DOMCharacterData node Beschreibung class DOMCharacterData { void replaceData ( int offset, int count, string data ) } Replace count characters starting from position offset with data . Parameter Liste offset The offset from which to start replacing. count The number of characters to replace. If the sum of offset and ...
- PHP Manual
- [ DOMCharacterData->replaceData() php.net ]
- PHP Funktion
- DOMCharacterData->substringData() ( phplist Code 10% Relevanz )
- Rubrik
- DOM Functions
- Kurzform
- DOMCharacterData->substringData() -- Extracts a range of data from the node
- Vorschau
- ...;substringData() (no version information, might be only in CVS) DOMCharacterData->substringData() -- Extracts a range of data from the node Beschreibung class DOMCharacterData { string substringData ( int offset, int count ) } Returns the specified substring. Parameter Liste offset Start offset of substring to extract. count The number of characters to extract. Rückgabewerte The specified substring. If the sum of offset and count ...
- PHP Manual
- [ DOMCharacterData->substringData() php.net ]
- PHP Funktion
- ncurses_insdelln ( phplist Code 10% Relevanz )
- Rubrik
- Ncurses Terminal Screen Control Functions
- Kurzform
- ncurses_insdelln -- Insert lines before current line scrolling down (negative numbers delete and scroll up)
- Vorschau
- ...ncurses_insdelln ncurses_insdelln (PHP 4 >= 4.1.0, PHP 5) ncurses_insdelln -- Insert lines before current line scrolling down (negative numbers delete and scroll up) Description int ncurses_insdelln ( int count ) 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 Sie ...
- PHP Manual
- [ ncurses_insdelln php.net ]
- PHP Funktion
- PDO->exec() ( phplist Code 10% Relevanz )
- Rubrik
- PDO-Funktionen
- Kurzform
- PDO->exec() -- Execute an SQL statement and return the number of affected rows
- Vorschau
- ... return value of PDO->exec() , wherein a statement that affected 0 rows results in a call to die() : <?php $db -> exec () or die( $db -> errorInfo ()); ?> Beispiele Beispiel 1. Issuing a DELETE statement Count the number of rows deleted by a DELETE statement with no WHERE clause. <?php $dbh = new PDO ( 'odbc:sample' , 'db2inst1' , 'ibmdb2' ); /* Delete all rows from the FRUIT table */ $count = $dbh -> exec ( "DELETE FROM ...
- PHP Manual
- [ PDO->exec() php.net ]
- PHP Funktion
- php_stream_gets ( phplist Code 10% Relevanz )
- Rubrik
- Streams Common API Reference
- Kurzform
- -----
- Vorschau
- ...php_stream_gets php_stream_gets php_stream_gets -- Read a line of data from a stream into a buffer Description char * php_stream_gets ( php_stream * stream, char * buf, size_t maxlen ) php_stream_gets() reads up to count -1 bytes of data from stream and copies them into the buffer buf . Reading stops after an EOF or a newline. If a newline is read, it is stored in buf as part of the returned data. A NUL terminating character is stored as ...
- PHP Manual
- [ php_stream_gets php.net ]
- PHP Funktion
- php_stream_read ( phplist Code 10% Relevanz )
- Rubrik
- Streams Common API Reference
- Kurzform
- -----
- Vorschau
- ...php_stream_read php_stream_read php_stream_read -- Read a number of bytes from a stream into a buffer Description size_t php_stream_read ( php_stream * stream, char * buf, size_t count ) php_stream_read() reads up to count bytes of data from stream and copies them into the buffer buf . php_stream_read() returns the number of bytes that were read successfully. There is no distinction between a failed read or an end-of-file condition - use ...
- PHP Manual
- [ php_stream_read php.net ]
- PHP Funktion
- php_stream_write ( phplist Code 10% Relevanz )
- Rubrik
- Streams Common API Reference
- Kurzform
- -----
- Vorschau
- ...php_stream_write php_stream_write php_stream_write -- Write a number of bytes from a buffer to a stream Description size_t php_stream_write ( php_stream * stream, const char * buf, size_t count ) php_stream_write() writes count bytes of data from buf into stream . php_stream_write() returns the number of bytes that were written successfully. If there was an error, the number of bytes written will be less than ...
- PHP Manual
- [ php_stream_write php.net ]
- PHP Funktion
- sesam_fetch_array ( phplist Code 9% Relevanz )
- Rubrik
- SESAM Datenbankfunktionen
- Kurzform
- sesam_fetch_array -- Liefert eine Zeile als assoziatives Array
- Vorschau
- ... LASTNAME='" . strtoupper ( $name ). "'\n" . " ORDER BY FIRSTNAME" , 1 ); if (! $result ) { ... error ... } // print the table: print "<TABLE BORDER>\n" ; while (( $row = sesam_fetch_array ( $result )) && count ( $row ) > 0 ) { print " <TR>\n" ; print " <TD>" . htmlspecialchars ( $row [ "firstname" ]). "</TD>\n" ; print " <TD>" . htmlspecialchars ( $row [ "lastname" ]). "</TD>\n" ; print " <TD...
- PHP Manual
- [ sesam_fetch_array php.net ]
- PHP Funktion
- set_error_handler ( phplist Code 9% Relevanz )
- Rubrik
- Error Handling and Logging Functions
- Kurzform
- set_error_handler -- Bestimmt eine benutzerdefinierte Funktion zur Fehlerbehandlung.
- Vorschau
- ...log(x) for x <= 0 is undefined, you used: scale = $scale" , FATAL ); } if (! is_array ( $vect )) { trigger_error ( "Incorrect input vector, array of values expected" , ERROR ); return null ; } for ( $i = 0 ; $i < count ( $vect ); $i ++) { if (! is_numeric ( $vect [ $i ])) trigger_error ( "Value at position $i is not a number, using 0 (zero)" , WARNING ); $temp [ $i ] = log ( $scale ) * $vect [ $i ]; } return $temp ; } // auf die ...
- PHP Manual
- [ set_error_handler php.net ]
- PHP Funktion
- px_timestamp2string ( phplist Code 8% Relevanz )
- Rubrik
- Paradox File Access
- Kurzform
- px_timestamp2string -- Converts the timestamp into a string.
- Vorschau
- ... output '7/15/1917 01:00:00'. */ echo px_timestamp2string ( $px , $stamp , "n/d/Y H:i:s" ). "\n" ; px_delete ( $px ); ?> Das oben gezeigte Beispiel erzeugt folgendeAusgabe: 7/15/19177/15/1917 01:00:00 The Julian day count as passed to jdtogregorian() has a different base of 1.1.4714 b.c. and must therefore be calculated by adding 1721425 to the day count used in the paradox file. Turning the day count into a timestamp is easily done by ...
- PHP Manual
- [ px_timestamp2string php.net ]
- PHP Funktion
- Alternative PHP Cache ( phplist Code 8% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ...your cache. If you have GD enabled in PHP, it will even have pretty graphs. First thing to check is of course that it is actually caching files. Assuming it is working you should then pay close attention to the Cache full count number on the left. That tells you the number of times the cache has filled up and has had to forcefully clean up any entries not accessed within the last apc.ttl seconds. You should configure your cache to minimize this ...
- PHP Manual
- [ Alternative PHP Cache php.net ]
- PHP Funktion
- struct php_stream_ops ( phplist Code 8% Relevanz )
- Rubrik
- Streams Structures
- Kurzform
- -----
- Vorschau
- ... -- Holds member functions for a stream implementation Description typedef struct _php_stream_ops { /* all streams MUST implement these operations */ size_t (*write)(php_stream *stream, const char *buf, size_t count TSRMLS_DC); size_t (*read)(php_stream *stream, char *buf, size_t count TSRMLS_DC); int (*close)(php_stream *stream, int close_handle TSRMLS_DC); int (*flush)(php_stream *stream TSRMLS_DC); const char *label; /* name ...
- PHP Manual
- [ struct php_stream_ops php.net ]
- PHP Funktion
- stream_wrapper_register ( phplist Code 7% Relevanz )
- Rubrik
- Stream Functions
- Kurzform
- stream_wrapper_register -- Register a URL wrapper implemented as a PHP class
- Vorschau
- ... you should return FALSE void stream_close ( void ) This method is called when the stream is closed, using fclose() . You must release any resources that were locked or allocated by the stream. string stream_read ( int count ) This method is called in response to fread() and fgets() calls on the stream. You must return up-to count bytes of data from the current read/write position as a string. If there are less than count bytes available, ...
- PHP Manual
- [ stream_wrapper_register php.net ]
- PHP Funktion
- Arrays ( phplist Code 0% Relevanz )
- Rubrik
- Typen
- Kurzform
- -----
- Vorschau
- ... setzen, werden diese von PHP nicht ausgewertet. <?php error_reporting ( E_ALL ); ini_set ( 'display_errors' , true ); ini_set ( 'html_errors' , false ); // Ein einfaches Array: $array = array( 1 , 2 ); $anzahl = count ( $array ); for ( $i = 0 ; $i < $anzahl ; $i ++) { echo " \n Überprüfe $i: \n " ; echo "Schlecht: " . $array [ '$i' ] . "\n" ; echo "Gut: " . $array [ $i ] . "\n" ; echo "Schlecht: { $array [ '$i' ]}\n " ; echo "Gut...
- PHP Manual
- [ Arrays php.net ]
- PHP Funktion
- KADM5 ( phplist Code 0% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ...' policy to new principals. KADM5_CLEARPOLICY suppresses this behaviour. KADM5_LAST_SUCCESS long The KDC time of the last successfull AS_REQ. KADM5_LAST_FAILED long The KDC time of the last failed AS_REQ. KADM5_FAIL_AUTH_COUNT long The number of consecutive failed AS_REQs. KADM5_RANDKEY long Generates a random password for the principal. The parameter password will be ignored. KADM5_ATTRIBUTES long A bitfield of attributes for use by the KDC. ...
- PHP Manual
- [ KADM5 php.net ]