
PHP Funktionen : PHP Übersicht : PHP Manual
global
PHP
Function global / PHP
Funktion global
phplist »
Webkatalog Script - Link Script »
PHP Function Coder »
global
- PHP Funktion
- Handling of global variables ( phplist Code 35% Relevanz )
- Rubrik
- Migrating from PHP 3 to PHP 4
- Kurzform
- -----
- Vorschau
- ...Handling of global variables PHP Handbuch Anhang C. Migrating from PHP 3 to PHP 4 Handling of global variables While handling of global variables had the focus on to be easy in PHP 3 and early versions of PHP 4, the focus has changed to be more secure. While in PHP 3 the following example worked fine, in PHP 4 it has to be unset( unset($GLOBALS["id...
- PHP Manual
- [ Handling of global variables php.net ]
- PHP Funktion
- Geltungsbereich von Variablen ( phplist Code 29% Relevanz )
- Rubrik
- Variablen
- Kurzform
- -----
- Vorschau
- ... Funktionen wird ein auf die Funktion beschränkter Geltungsbereich eingeführt. Jede in einer Funktion benutzte Variable ist zunächst auf den lokalen Bereich der Funktion beschränkt, z.B.: <?php $a = 1 ; // globaler Bereich function test () { echo $a ; // Referenz auf einen lokalen Variablen-Bereich } test (); ?> Dieses Skript erzeugt keine Bildschirm-Ausgabe, da sich die Echo- Anweisung auf eine lokale Variable namens $a ...
- PHP Manual
- [ Geltungsbereich von Variablen php.net ]
- PHP Funktion
- CLI and CGI ( phplist Code 24% Relevanz )
- Rubrik
- Migrating from PHP 4 to PHP 5
- Kurzform
- -----
- Vorschau
- ... to the CLI version, except that php-win doesn't output anything and thus provides no console (no "dos box" appears on the screen). This behavior is similar to php-gtk. In PHP 5, the CLI version will always populate the global $argv and $argc variables regardless of any php.ini directive setting. Even having register_argc_argv set to off will have no affect in CLI. See also the commandline reference . Backward Incompatible Changes ...
- PHP Manual
- [ CLI and CGI php.net ]
- PHP Funktion
- mb_parse_str ( phplist Code 22% 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 ...
- PHP Manual
- [ mb_parse_str php.net ]
- PHP Funktion
- xslt_set_sax_handlers ( phplist Code 22% Relevanz )
- Rubrik
- XSLT Funktionen
- Kurzform
- xslt_set_sax_handlers -- Set the SAX handlers to be called when the XML document gets processed
- Vorschau
- ...gt; </xsl:stylesheet>' ; // Handlers : function start_document () { // start reading the document } function end_document () { // end reading the document } function start_element ( $parser , $name , $attributes ) { global $result , $tag ; $result .= "<" . $name . ">" ; $tag = $name ; } function end_element ( $parser , $name ) { global $result ; $result .= "</" . $name . ">" ; } function characters ( $parser , $data ) { global $...
- PHP Manual
- [ xslt_set_sax_handlers php.net ]
- PHP Funktion
- List of Parser Tokens ( phplist Code 22% Relevanz )
- Rubrik
- Anhang
- Kurzform
- -----
- Vorschau
- ... and objects T_FILE __FILE__ constants T_FINAL final Abschnitt namens Final Schlüsselwort in Kapitel 19 (available since PHP 5.0.0) T_FOR for for T_FOREACH foreach foreach T_FUNCTION function or cfunction functions T_GLOBAL global variable scope T_HALT_COMPILER __halt_compiler() __halt_compiler (available since PHP 5.1.0) T_IF if if T_IMPLEMENTS implements Abschnitt namens Interfaces in Kapitel 19 (available since PHP 5.0.0) T_INC ++ ...
- PHP Manual
- [ List of Parser Tokens php.net ]
- PHP Funktion
- ps_begin_page ( phplist Code 21% Relevanz )
- Rubrik
- PostScript document creation
- Kurzform
- ps_begin_page -- Start a new page
- Vorschau
- ... of the document. This can lead to unexpected results when you set a BoundingBox whose lower left corner is not (0, 0), because the bounding box of the page will always have a lower left corner (0, 0) and overwrites the global setting. Each page is encapsulated into save/restore. This means, that most of the settings made on one page will not be retained on the next page. If there is up to the first call of ps_begin_page() no call of ...
- PHP Manual
- [ ps_begin_page php.net ]
- PHP Funktion
- Vordefinierte Variablen ( phplist Code 21% Relevanz )
- Rubrik
- Variablen
- Kurzform
- -----
- Vorschau
- ... per Kommando-Zeilen-Aufruf ausgeführt werden. Für eine Liste dieser Variablen lesen Sie bitte den Abschnitt Vordefinierte Variablen . Warnung Ab PHP 4.2.0 ist der standardmäßige Wert für die PHP-Anweisung register_globals off . Dies ist eine wesentliche Änderung in PHP. Die Anweisung register_globals off beeinflusst den Satz von vordefinierten Variablen, die im globalen Bereich verfügbar sind. Um zum Beispiel DOCUMENT_ROOT zu bekommen, mü...
- PHP Manual
- [ Vordefinierte Variablen php.net ]
- PHP Funktion
- Vordefinierte Variablen ( phplist Code 21% Relevanz )
- Rubrik
- Reservierte Wörter in PHP
- Kurzform
- -----
- Vorschau
- ...Vordefinierte Variablen PHP Handbuch Anhang K. Reservierte Wörter in PHP Vordefinierte Variablen 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 ...
- PHP Manual
- [ Vordefinierte Variablen php.net ]
- PHP Funktion
- Source Layout ( phplist Code 21% Relevanz )
- Rubrik
- Zend API: Hacking the Core of PHP
- Kurzform
- -----
- Vorschau
- ... Zend API; otherwise, you risk memory leaks. Zend also features a thread-safe resource manager to provide better native support for multithreaded Web servers. This requires you to allocate local structures for all of your global variables to allow concurrent threads to be run. Because the thread-safe mode of Zend was not finished back when this was written, it is not yet extensively covered here. Directory and File Functions The following ...
- PHP Manual
- [ Source Layout php.net ]
- PHP Funktion
- import_request_variables ( phplist Code 20% Relevanz )
- Rubrik
- Funktionen zur Behandlung von Variablen
- Kurzform
- import_request_variables -- Import GET/POST/Cookie variables into the global scope
- Vorschau
- ...import_request_variables import_request_variables (PHP 4 >= 4.1.0, PHP 5) import_request_variables -- Import GET/POST/Cookie variables into the global scope Description bool import_request_variables ( string types [, string prefix] ) Imports GET/POST/Cookie variables into the global scope. It is useful if you disabled register_globals , but would like to see some ...
- PHP Manual
- [ import_request_variables php.net ]
- PHP Funktion
- session_set_save_handler ( phplist Code 20% Relevanz )
- Rubrik
- Session Funktionen
- Kurzform
- session_set_save_handler -- Setzt benutzerdefinierte Session-Speicherfunktionen
- Vorschau
- .... Es ist möglich, session_write_close() über den Destruktor aufzurufen, um dieses Henne-Ei Problem zu lösen. Beispiel 1. session_set_save_handler() Beispiel <?php function open ( $save_path , $session_name ) { global $sess_save_path ; $sess_save_path = $save_path ; return( true ); } function close () { return( true ); } function read ( $id ) { global $sess_save_path ; $sess_file = "$sess_save_path/sess_$id" ; return (string) @ ...
- PHP Manual
- [ session_set_save_handler php.net ]
- PHP Funktion
- Ming functions for Flash ( phplist Code 20% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... -- Creates a new Button SWFDisplayItem->addColor -- Adds the given color to this item's color transform SWFDisplayItem->move -- Moves object in relative coordinates SWFDisplayItem->moveTo -- Moves object in global coordinates SWFDisplayItem->multColor -- Multiplies the item's color transform SWFDisplayItem->remove -- Removes the object from the movie SWFDisplayItem->Rotate -- Rotates in relative coordinates ...
- PHP Manual
- [ Ming functions for Flash php.net ]
- PHP Funktion
- mcal_event_init ( phplist Code 19% Relevanz )
- Rubrik
- MCAL Funktionen
- Kurzform
- mcal_event_init -- Initializes a streams global event structure
- Vorschau
- ...mcal_event_init mcal_event_init (PHP 3 >= 3.0.13, PHP 4, PECL) mcal_event_init -- Initializes a streams global event structure Description int mcal_event_init ( int stream ) mcal_event_init() initializes a streams global event structure. this effectively sets all elements of the structure to 0, or the default settings. Returns TRUE . mcal_event_add_attribute mcal_event_set_alarm...
- PHP Manual
- [ mcal_event_init php.net ]
- PHP Funktion
- sybase_set_message_handler ( phplist Code 19% Relevanz )
- Rubrik
- Sybase Funktionen
- Kurzform
- sybase_set_message_handler -- Sets the handler called when a server message is raised
- Vorschau
- ... raised Description bool sybase_set_message_handler ( callback handler [, resource connection] ) sybase_set_message_handler() sets a user function to handle messages generated by the server. You may specify the name of a global function, or use an array to specify an object reference and a method name. Anmerkung: Diese Funktion steht nur zur Verfügung,wenn Sie die CT Bibliothek als Schnittstelle zu Sybase verwenden. The handler expects five ...
- PHP Manual
- [ sybase_set_message_handler php.net ]
- PHP Funktion
- Fleshing out your skeleton ( phplist Code 19% Relevanz )
- Rubrik
- PDO Driver How-To
- Kurzform
- -----
- Vorschau
- ... C. Error handling is explained in Appendix D. pdo_SKEL.c: PHP extension glue function entries static function_entry pdo_SKEL_functions[] = { { NULL, NULL, NULL }}; This structure is used to register functions into the global php function namespace. PDO drivers should try to avoid doing this, so it is recommended that you leave this structure initialized to NULL, as shown in the synopsis above. Module entry /* {{{ pdo_SKEL_module_entry */#if ...
- PHP Manual
- [ Fleshing out your skeleton php.net ]
- PHP Funktion
- MCAL Funktionen ( phplist Code 19% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... the number of days in the given month mcal_delete_calendar -- Delete an MCAL calendar mcal_delete_event -- Delete an event from an MCAL calendar mcal_event_add_attribute -- Adds an attribute and a value to the streams global event structure mcal_event_init -- Initializes a streams global event structure mcal_event_set_alarm -- Sets the alarm of the streams global event structure mcal_event_set_category -- Sets the category of the streams ...
- PHP Manual
- [ MCAL Funktionen php.net ]
- PHP Funktion
- mcal_list_alarms ( phplist Code 18% Relevanz )
- Rubrik
- MCAL Funktionen
- Kurzform
- mcal_list_alarms -- Return a list of events that has an alarm triggered at the given datetime
- Vorschau
- ... [, int end_year [, int end_month [, int end_day]]]]]] ) Returns an array of event ID's that has an alarm going off between the start and end dates, or if just a stream is given, uses the start and end dates in the global event structure. mcal_list_events() function takes in an optional beginning date and an end date for a calendar stream. An array of event id's that are between the given dates or the internal event dates are returned. ...
- PHP Manual
- [ mcal_list_alarms php.net ]
- PHP Funktion
- mcal_list_events ( phplist Code 18% Relevanz )
- Rubrik
- MCAL Funktionen
- Kurzform
- mcal_list_events -- Zeigt eine Liste der Einträge zwischen zwei Zeitpunkten an
- Vorschau
- ... [, int begin_day [, int end_year [, int end_month [, int end_day]]]]]] ) Returns an array of event ID's that are between the start and end dates, or if just a stream is given, uses the start and end dates in the global event structure. mcal_list_events() function takes in an optional beginning date and an end date for a calendar stream. An array of event id's that are between the given dates or the internal event dates are returned. ...
- PHP Manual
- [ mcal_list_events php.net ]
- PHP Funktion
- mcal_store_event ( phplist Code 18% Relevanz )
- Rubrik
- MCAL Funktionen
- Kurzform
- mcal_store_event -- Modify an existing event in an MCAL calendar
- Vorschau
- ... (PHP 3 >= 3.0.13, PHP 4, PECL) mcal_store_event -- Modify an existing event in an MCAL calendar Description int mcal_store_event ( int mcal_stream ) mcal_store_event() Stores the modifications to the current global event for the given stream. Returns TRUE on success and FALSE on error. mcal_snooze mcal_time_valid...
- PHP Manual
- [ mcal_store_event php.net ]
- PHP Funktion
- SWFDisplayItem->scaleTo ( phplist Code 18% Relevanz )
- Rubrik
- Ming functions for Flash
- Kurzform
- SWFDisplayItem->scaleTo -- Scales the object in global coordinates
- Vorschau
- ...="function.swfdisplayitem.scale.html"> setDepth"HREF="function.swfdisplayitem.setdepth.html"> SWFDisplayItem->scaleTo (no version information, might be only in CVS) SWFDisplayItem->scaleTo -- Scales the object in global coordinates Description void swfdisplayitem->scaleto ( int x [, int y] ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen ...
- PHP Manual
- [ SWFDisplayItem->scaleTo php.net ]
- PHP Funktion
- Funktionen zur Behandlung von Variablen ( phplist Code 18% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... -- Gibt ein Array aller definierten Variablen get_resource_type -- Returns the resource type gettype -- Liefert den Datentyp einer Variablen import_request_variables -- Import GET/POST/Cookie variables into the global scope intval -- Konvertiert einen Wert nach integer is_array -- Prüft, ob die Variable ein Array ist is_bool -- Prüft, ob eine Variable vom Typ boolean ist is_callable -- Verify that the contents of a variable can be ...
- PHP Manual
- [ Funktionen zur Behandlung von Variablen php.net ]
- PHP Funktion
- Rules ( phplist Code 18% Relevanz )
- Rubrik
- Userland Naming Guide
- Kurzform
- -----
- Vorschau
- ... names and avoid any obvious clashes. Function names use underscores between words, while class names use the lower bumpy camel rule (there are some exceptions for older classes and functions). PHP will prefix any global symbols of an extension with the name of the extension. (In the past, there have been numerous exceptions to this rule.) Examples: curl_close() mysql_query() PREG_SPLIT_DELIM_CAPTURE new DOMDocument() strpos() (example ...
- PHP Manual
- [ Rules php.net ]
- PHP Funktion
- mcal_append_event ( phplist Code 17% Relevanz )
- Rubrik
- MCAL Funktionen
- Kurzform
- mcal_append_event -- Store a new event into an MCAL calendar
- Vorschau
- ...mcal_append_event mcal_append_event (PHP 4, PECL) mcal_append_event -- Store a new event into an MCAL calendar Description int mcal_append_event ( int mcal_stream ) mcal_append_event() Stores the global event into an MCAL calendar for the given stream. Returns the uid of the newly inserted event. MCAL Funktionen mcal_close...
- PHP Manual
- [ mcal_append_event php.net ]
- PHP Funktion
- mcal_event_set_end ( phplist Code 17% Relevanz )
- Rubrik
- MCAL Funktionen
- Kurzform
- mcal_event_set_end -- Sets the end date and time of the streams global event structure
- Vorschau
- ...mcal_event_set_end mcal_event_set_end (PHP 3 >= 3.0.13, PHP 4, PECL) mcal_event_set_end -- Sets the end date and time of the streams global event structure Description int mcal_event_set_end ( int stream, int year, int month [, int day [, int hour [, int min [, int sec]]]] ) mcal_event_set_end() sets the streams global event structure's end date and time to ...
- PHP Manual
- [ mcal_event_set_end php.net ]
- PHP Funktion
- socket_clear_error ( phplist Code 17% Relevanz )
- Rubrik
- Socket Funktionen
- Kurzform
- socket_clear_error -- Löscht entweder einen Fehler oder den letzten Fehlercode eines Sockets
- Vorschau
- ... -- Löscht entweder einen Fehler oder den letzten Fehlercode eines Sockets Beschreibung void socket_clear_error ( [resource socket] ) Diese Funktion löscht entweder einen Fehlercode für einen gegebenen Socket oder global den letzten Socket-Fehler. Mit dieser Funktion kann der Wert eines Fehlercodes explizit gesetzt werden, entweder für einen bestimmten Socket oder global den Fehlercode des letzten Fehlers innerhalb dieser Extension. Dies...
- PHP Manual
- [ socket_clear_error php.net ]
- PHP Funktion
- Migrating Configuration Files ( phplist Code 17% Relevanz )
- Rubrik
- Migrating from PHP 3 to PHP 4
- Kurzform
- -----
- Vorschau
- ...Migrating Configuration Files PHP Handbuch Anhang C. Migrating from PHP 3 to PHP 4 Migrating Configuration Files The global configuration file, php3.ini , has changed its name to php.ini . For the Apache configuration file, there are slightly more changes. The MIME types recognized by the PHP module have changed. application/x-httpd-php3 --...
- PHP Manual
- [ Migrating Configuration Files php.net ]
- PHP Funktion
- Backward Incompatible Changes ( phplist Code 17% Relevanz )
- Rubrik
- Migrating from PHP 4 to PHP 5
- Kurzform
- -----
- Vorschau
- ... $_SERVER, then of course it shouldn't be there. The change was to always make argc and argv available in the CLI version regardless of the variables_order setting. As in, the CLI version will now always populate the global $argc and $argv variables. An object with no properties is no longer considered "empty". In some cases classes must be declared before use. It only happens if some of the new features of PHP 5 (such as interfaces ) are ...
- PHP Manual
- [ Backward Incompatible Changes php.net ]
- PHP Funktion
- Klassen- und Objekt-Funktionen ( phplist Code 17% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ...t $prop = $val \n " ; } function zeige_methoden ( $obj ) { $arr = get_class_methods ( get_class ( $obj )); foreach ( $arr as $method ) echo " \t function $method() \n " ; } function klassen_abstammung ( $obj , $class ) { global $ $obj ; if ( is_subclass_of ($ $obj , $class )) { echo "Objekt $obj gehört zur Klasse " . get_class ($ $obj ); echo " einer Subklasse von $class \n " ; } else { echo "Object $obj gehört nicht zu einer Subklasse von $...
- PHP Manual
- [ Klassen- und Objekt-Funktionen php.net ]
- PHP Funktion
- Creating Variables ( phplist Code 17% Relevanz )
- Rubrik
- Zend API: Hacking the Core of PHP
- Kurzform
- -----
- Vorschau
- ... so (with automatic deallocation of the old zval container). This is the preferred method if speed is not a crucial issue and you'd like to keep memory usage low. Note that ZEND_SET_SYMBOL makes use of the Zend executor globals via the macro EG . By specifying EG(active_symbol_table) , you get access to the currently active symbol table, dealing with the active, local scope. The local scope may differ depending on whether the function was ...
- PHP Manual
- [ Creating Variables php.net ]
- PHP Funktion
- runkit_constant_add ( phplist Code 16% Relevanz )
- Rubrik
- runkit Functions
- Kurzform
- runkit_constant_add -- Similar to define() but allows defining in class definitions as well
- Vorschau
- ... to define(), but allows defining in class definitions as well Beschreibung bool runkit_constant_add ( string constname, mixed value ) Parameter Liste constname Name of constant to declare. Either a string to indicate a global constant, or classname::constname to indicate a class constant. value NULL, Bool, Long, Double, String, or Resource value to store in the new constant. Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe ...
- PHP Manual
- [ runkit_constant_add php.net ]
- PHP Funktion
- SWFFill->moveTo ( phplist Code 16% Relevanz )
- Rubrik
- Ming functions for Flash
- Kurzform
- SWFFill->moveTo -- Moves fill origin
- Vorschau
- ... was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohneAnkündigung ändern. Seien Sie gewarnt und verwenden Sie diese Funktion aufeigenes Risiko. swffill->moveto() moves fill's origin to ( x , y ) in global coordinates. SWFDisplayItem->skewYTo SWFFill->rotateTo...
- PHP Manual
- [ SWFFill->moveTo php.net ]
- PHP Funktion
- XMLReader functions ( phplist Code 16% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... dieserErung definiert und stehen nur zur Verfügung, wenn die Erung entwederstatisch in PHP kompiliert oder dynamisch zur Laufzeit geladen wurde. Warnung XMLReader uses class constants since PHP 5.1. Prior releases use global constants in the form XMLREADER_ELEMENT . Tabelle 2. XMLReader Node Types Constant Value Description XMLReader::NONE ( integer ) 0 No node type XMLReader::ELEMENT ( integer ) 1 Start element XMLReader::ATTRIBUTE ( ...
- PHP Manual
- [ XMLReader functions php.net ]
- PHP Funktion
- include ( phplist Code 15% Relevanz )
- Rubrik
- Kontroll-Strukturen
- Kurzform
- -----
- Vorschau
- ... Sie diesen Code innerhalb dieser Funktion definiert hätten. Aus diesem Grund hat dieser Code den Geltungsbereich der Variablen dieser Funktion. Beispiel 16-4. Include innerhalb einer Funktion <?php function foo () { global $color ; include 'vars.php' ; echo "Ein $color $fruit" ; } /* vars.php ist im Geltungsbereich von foo(), * * d.h. $fruit steht außerhalb dieses Bereichs * * NICHT zur Verfügung. $color schon, da wir * * diese Variable als...
- PHP Manual
- [ include php.net ]
- PHP Funktion
- mcal_event_set_alarm ( phplist Code 15% Relevanz )
- Rubrik
- MCAL Funktionen
- Kurzform
- mcal_event_set_alarm -- Sets the alarm of the streams global event structure
- Vorschau
- ...mcal_event_set_alarm mcal_event_set_alarm (PHP 3 >= 3.0.13, PHP 4, PECL) mcal_event_set_alarm -- Sets the alarm of the streams global event structure Description int mcal_event_set_alarm ( int stream, int alarm ) mcal_event_set_alarm() sets the streams global event structure's alarm to the given minutes before the event. Returns TRUE . ...
- PHP Manual
- [ mcal_event_set_alarm php.net ]
- PHP Funktion
- mcal_event_set_class ( phplist Code 15% Relevanz )
- Rubrik
- MCAL Funktionen
- Kurzform
- mcal_event_set_class -- Sets the class of the streams global event structure
- Vorschau
- ...mcal_event_set_class mcal_event_set_class (PHP 3 >= 3.0.13, PHP 4, PECL) mcal_event_set_class -- Sets the class of the streams global event structure Description int mcal_event_set_class ( int stream, int class ) mcal_event_set_class() sets the streams global event structure's class to the given value. The class is either 1 for public, or 0 for private...
- PHP Manual
- [ mcal_event_set_class php.net ]
- PHP Funktion
- mcal_event_set_start ( phplist Code 15% Relevanz )
- Rubrik
- MCAL Funktionen
- Kurzform
- mcal_event_set_start -- Sets the start date and time of the streams global event structure
- Vorschau
- ...mcal_event_set_start mcal_event_set_start (PHP 3 >= 3.0.13, PHP 4, PECL) mcal_event_set_start -- Sets the start date and time of the streams global event structure Description int mcal_event_set_start ( int stream, int year, int month [, int day [, int hour [, int min [, int sec]]]] ) mcal_event_set_start() sets the streams global event structure's start date and ...
- PHP Manual
- [ mcal_event_set_start php.net ]
- PHP Funktion
- mcal_event_set_title ( phplist Code 15% Relevanz )
- Rubrik
- MCAL Funktionen
- Kurzform
- mcal_event_set_title -- Sets the title of the streams global event structure
- Vorschau
- ...mcal_event_set_title mcal_event_set_title (PHP 3 >= 3.0.13, PHP 4, PECL) mcal_event_set_title -- Sets the title of the streams global event structure Description int mcal_event_set_title ( int stream, string title ) mcal_event_set_title() sets the streams global event structure's title to the given string. Returns TRUE . mcal_event_set_start ...
- PHP Manual
- [ mcal_event_set_title php.net ]
- PHP Funktion
- readline_callback_handler_install ( phplist Code 15% Relevanz )
- Rubrik
- GNU Readline
- Kurzform
- readline_callback_handler_install -- Initializes the readline callback interface and terminal prints the prompt and returns immediately
- Vorschau
- ...allows interleaving of IO and user input, unlike readline() . Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Beispiele Beispiel 1. Readline Callback Interface Example <?php function rl_callback ( $ret ) { global $c , $prompting ; echo "You entered: $ret \n " ; $c ++; if ( $c > 10 ) { $prompting = false ; readline_callback_handler_remove (); } else { readline_callback_handler_install ( " [ $c ] Enter something: " , 'rl_callback...
- PHP Manual
- [ readline_callback_handler_install php.net ]
- PHP Funktion
- pdo_dbh_t definition ( phplist Code 15% Relevanz )
- Rubrik
- PDO Driver How-To
- Kurzform
- -----
- Vorschau
- ...:1; /* max length a single character can become after correct quoting */ unsigned max_escaped_char_length:3; /* data source string used to open this handle */ const char *data_source; unsigned long data_source_len; /* the global error code. */ pdo_error_type error_code; enum pdo_case_conversion native_case , desired_case;}; The driver must set this during SKEL_handle_factory() . This item is for use by the driver; the intended usage is to store...
- PHP Manual
- [ pdo_dbh_t definition php.net ]
- PHP Funktion
- Cookies ( phplist Code 15% Relevanz )
- Rubrik
- Migrating from PHP 3 to PHP 4
- Kurzform
- -----
- Vorschau
- ... in the code. This might break some existing code, but the old behaviour was so strange to understand that it deserved a change to prevent further problems in the future. Variable substitution in strings Handling of global variables...
- PHP Manual
- [ Cookies php.net ]
- PHP Funktion
- XML Parser Functions ( phplist Code 15% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... 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 ) { global $depth ; $depth [ $parser ]--; } $xml_parser = ...
- PHP Manual
- [ XML Parser Functions php.net ]
- PHP Funktion
- Userland Naming Guide ( phplist Code 15% Relevanz )
- Rubrik
- Anhang
- Kurzform
- -----
- Vorschau
- ...Userland Naming Guide Anhang R. Userland Naming Guide Inhaltsverzeichnis Global Namespace Rules Tips The following is a guide for how to best choose names for identifiers in userland PHP code. When choosing names for any code that creates symbols in the global namespace, it is important to take into...
- PHP Manual
- [ Userland Naming Guide php.net ]
- PHP Funktion
- Calling User Functions ( phplist Code 14% Relevanz )
- Rubrik
- Extending PHP 3
- Kurzform
- -----
- Vorschau
- ... of your function). If it returns FAILURE, the value of retval is undefined, and you mustn't touch it. All internal functions that call user functions must be reentrant. Among other things, this means they must not use globals or static variables. call_user_function() takes six arguments: HashTable *function_table This is the hash table in which the function is to be looked up. pval *object This is a pointer to an object on which the ...
- PHP Manual
- [ Calling User Functions php.net ]
- PHP Funktion
- hw_mapid ( phplist Code 14% Relevanz )
- Rubrik
- Hyperwave Functions
- Kurzform
- hw_mapid -- Maps global id on virtual local id
- Vorschau
- ...hw_mapid hw_mapid (PHP 3 >= 3.0.13, PHP 4, PECL) hw_mapid -- Maps global id on virtual local id Description int hw_mapid ( int connection, int server_id, int object_id ) Maps a global object id on any hyperwave server, even those you did not connect to with hw_connect() , onto a virtual object id. This virtual object id can then be used as any other object id, e.g. to obtain the object record with ...
- PHP Manual
- [ hw_mapid php.net ]
- PHP Funktion
- mcal_event_set_category ( phplist Code 14% Relevanz )
- Rubrik
- MCAL Funktionen
- Kurzform
- mcal_event_set_category -- Sets the category of the streams global event structure
- Vorschau
- ...mcal_event_set_category mcal_event_set_category (PHP 3 >= 3.0.13, PHP 4, PECL) mcal_event_set_category -- Sets the category of the streams global event structure Description int mcal_event_set_category ( int stream, string category ) mcal_event_set_category() sets the streams global event structure's category to the given string. Returns TRUE . ...
- PHP Manual
- [ mcal_event_set_category php.net ]
- PHP Funktion
- runkit_constant_remove ( phplist Code 14% Relevanz )
- Rubrik
- runkit Functions
- Kurzform
- runkit_constant_remove -- Remove/Delete an already defined constant
- Vorschau
- ...PECL) runkit_constant_remove -- Remove/Delete an already defined constant Beschreibung bool runkit_constant_remove ( string constname ) Parameter Liste constname Name of constant to remove. Either a string indicating a global constant, or classname::constname indicating a class constant. Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch define() runkit_constant_add() runkit_constant_redefine() runkit_constant_redefine...
- PHP Manual
- [ runkit_constant_remove php.net ]
- PHP Funktion
- maxdb_ping ( phplist Code 13% Relevanz )
- Rubrik
- MaxDB PHP Extension
- Kurzform
- maxdb_ping (no version information might be only in CVS)maxdb->ping -- Pings a server connection or tries to reconnect if the connection has gone down
- Vorschau
- ... down Description Procedural style: bool maxdb_ping ( resource link ) Object oriented style (method): class maxdb { bool ping ( void ) } Checks whether the connection to the server is working. If it has gone down, and global option maxdb.reconnect is enabled an automatic reconnection is attempted. This function can be used by clients that remain idle for a long while, to check whether the server has closed the connection and reconnect if ...
- PHP Manual
- [ maxdb_ping php.net ]
- PHP Funktion
- mcal_event_add_attribute ( phplist Code 13% Relevanz )
- Rubrik
- MCAL Funktionen
- Kurzform
- mcal_event_add_attribute -- Adds an attribute and a value to the streams global event structure
- Vorschau
- ...mcal_event_add_attribute mcal_event_add_attribute (PHP 3 >= 3.0.15, PHP 4, PECL) mcal_event_add_attribute -- Adds an attribute and a value to the streams global event structure Description bool mcal_event_add_attribute ( int stream, string attribute, string value ) mcal_event_add_attribute() adds an attribute to the stream's global event structure with the value given by "value...
- PHP Manual
- [ mcal_event_add_attribute php.net ]
- PHP Funktion
- mcal_event_set_description ( phplist Code 13% Relevanz )
- Rubrik
- MCAL Funktionen
- Kurzform
- mcal_event_set_description -- Sets the description of the streams global event structure
- Vorschau
- ...mcal_event_set_description mcal_event_set_description (PHP 3 >= 3.0.13, PHP 4, PECL) mcal_event_set_description -- Sets the description of the streams global event structure Description int mcal_event_set_description ( int stream, string description ) mcal_event_set_description() sets the streams global event structure's description to the given string. Returns TRUE . ...
- PHP Manual
- [ mcal_event_set_description php.net ]
- PHP Funktion
- mcal_event_set_recur_daily ( phplist Code 13% Relevanz )
- Rubrik
- MCAL Funktionen
- Kurzform
- mcal_event_set_recur_daily -- Sets the recurrence of the streams global event structure
- Vorschau
- ...mcal_event_set_recur_daily mcal_event_set_recur_daily (PHP 3 >= 3.0.13, PHP 4, PECL) mcal_event_set_recur_daily -- Sets the recurrence of the streams global event structure Description int mcal_event_set_recur_daily ( int stream, int year, int month, int day, int interval ) mcal_event_set_recur_daily() sets the streams global event structure's recurrence to the given value to...
- PHP Manual
- [ mcal_event_set_recur_daily php.net ]
- PHP Funktion
- mcal_event_set_recur_none ( phplist Code 13% Relevanz )
- Rubrik
- MCAL Funktionen
- Kurzform
- mcal_event_set_recur_none -- Sets the recurrence of the streams global event structure
- Vorschau
- ...mcal_event_set_recur_none mcal_event_set_recur_none (PHP 3 >= 3.0.15, PHP 4, PECL) mcal_event_set_recur_none -- Sets the recurrence of the streams global event structure Description int mcal_event_set_recur_none ( int stream ) mcal_event_set_recur_none() sets the streams global event structure to not recur (event->recur_type is set to MCAL_RECUR_NONE). ...
- PHP Manual
- [ mcal_event_set_recur_none php.net ]
- PHP Funktion
- runkit_constant_redefine ( phplist Code 13% Relevanz )
- Rubrik
- runkit Functions
- Kurzform
- runkit_constant_redefine -- Redefine an already defined constant
- Vorschau
- ...) runkit_constant_redefine -- Redefine an already defined constant Beschreibung bool runkit_constant_redefine ( string constname, mixed newvalue ) Parameter Liste constname Constant to redefine. Either string indicating global constant, or classname::constname indicating class constant. newvalue New value to assign to constant. Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Siehe auch runkit_constant_add() runkit_constant_remove...
- PHP Manual
- [ runkit_constant_redefine php.net ]
- PHP Funktion
- SWFbutton ( phplist Code 13% Relevanz )
- Rubrik
- Ming functions for Flash
- Kurzform
- SWFbutton -- Creates a new Button
- Vorschau
- ... will show your usual interactions with buttons : rollover, rollon, mouseup, mousedown, noaction. Beispiel 1. swfbutton() example <?php $f = new SWFFont ( "_serif" ); $p = new SWFSprite (); function label ( $string ) { global $f ; $t = new SWFTextField (); $t -> setFont ( $f ); $t -> addString ( $string ); $t -> setHeight ( 200 ); $t -> setBounds ( 3200 , 200 ); return $t ; } function addLabel ( $string ) { global $p ; $i = $p ->...
- PHP Manual
- [ SWFbutton php.net ]
- PHP Funktion
- SWFDisplayItem->moveTo ( phplist Code 13% Relevanz )
- Rubrik
- Ming functions for Flash
- Kurzform
- SWFDisplayItem->moveTo -- Moves object in global coordinates
- Vorschau
- ..."HREF="function.swfdisplayitem.move.html"> multColor"HREF="function.swfdisplayitem.multcolor.html"> SWFDisplayItem->moveTo (no version information, might be only in CVS) SWFDisplayItem->moveTo -- Moves object in global coordinates Description void swfdisplayitem->moveto ( int x, int y ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen PHP-...
- PHP Manual
- [ SWFDisplayItem->moveTo php.net ]
- PHP Funktion
- Multibyte String Functions ( phplist Code 13% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- .../Get current language mb_list_encodings -- Returns an array of all supported encodings mb_output_handler -- Callback function converts character encoding in output buffer mb_parse_str -- Parse GET/POST/COOKIE data and set global variable mb_preferred_mime_name -- Get MIME charset string mb_regex_encoding -- Returns current encoding for multibyte regex as string mb_regex_set_options -- Set/Get the default options for mbregex functions mb_send_mail...
- PHP Manual
- [ Multibyte String Functions php.net ]
- PHP Funktion
- SESAM Datenbankfunktionen ( phplist Code 13% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... "sequential" oder "scrollable" sein, Standardwert ist wegen des geringeren Speicherbedarfs "sequential" "Scrollable" Cursors können im Ausgabedatensatz beliebig positioniert werden. Für jede "scrollable" Abfrage gibt es globale Standardwerte für den Scroll-Typ (initialisiert zu: SESAM_SEEK_NEXT ) und der Scrolling-Abstand, der entweder einmal mit: sesam_seek_row() oder jedesmal beim Lesen einer Zeile mit: sesam_fetch_row() gesetzt werden kann. ...
- PHP Manual
- [ SESAM Datenbankfunktionen php.net ]
- PHP Funktion
- mcal_event_set_recur_weekly ( phplist Code 12% Relevanz )
- Rubrik
- MCAL Funktionen
- Kurzform
- mcal_event_set_recur_weekly -- Sets the recurrence of the streams global event structure
- Vorschau
- ...mcal_event_set_recur_weekly mcal_event_set_recur_weekly (PHP 3 >= 3.0.13, PHP 4, PECL) mcal_event_set_recur_weekly -- Sets the recurrence of the streams global event structure Description int mcal_event_set_recur_weekly ( int stream, int year, int month, int day, int interval, int weekdays ) mcal_event_set_recur_weekly() sets the streams global event structure's recurrence to ...
- PHP Manual
- [ mcal_event_set_recur_weekly php.net ]
- PHP Funktion
- mcal_event_set_recur_yearly ( phplist Code 12% Relevanz )
- Rubrik
- MCAL Funktionen
- Kurzform
- mcal_event_set_recur_yearly -- Sets the recurrence of the streams global event structure
- Vorschau
- ...mcal_event_set_recur_yearly mcal_event_set_recur_yearly (PHP 3 >= 3.0.13, PHP 4, PECL) mcal_event_set_recur_yearly -- Sets the recurrence of the streams global event structure Description int mcal_event_set_recur_yearly ( int stream, int year, int month, int day, int interval ) mcal_event_set_recur_yearly() sets the streams global event structure's recurrence to the given value ...
- PHP Manual
- [ mcal_event_set_recur_yearly php.net ]
- PHP Funktion
- mysqli_ping ( phplist Code 12% Relevanz )
- Rubrik
- Verbesserte MySQL Erweiterung
- Kurzform
- mysqli_ping (no version information might be only in CVS)mysqli->ping -- Pings a server connection or tries to reconnect if the connection has gone down
- Vorschau
- ... down Description Procedural style: bool mysqli_ping ( mysqli link ) Object oriented style (method): class mysqli { bool ping ( void ) } Checks whether the connection to the server is working. If it has gone down, and global option mysqli.reconnect is enabled an automatic reconnection is attempted. This function can be used by clients that remain idle for a long while, to check whether the server has closed the connection and reconnect if ...
- PHP Manual
- [ mysqli_ping php.net ]
- PHP Funktion
- SWFDisplayItem->rotateTo ( phplist Code 12% Relevanz )
- Rubrik
- Ming functions for Flash
- Kurzform
- SWFDisplayItem->rotateTo -- Rotates the object in global coordinates
- Vorschau
- ...="function.swfdisplayitem.rotate.html"> scale"HREF="function.swfdisplayitem.scale.html"> SWFDisplayItem->rotateTo (no version information, might be only in CVS) SWFDisplayItem->rotateTo -- Rotates the object in global coordinates Description void swfdisplayitem->rotateto ( float degrees ) Warnung Diese Funktion ist EXPERIMENTELL . Das Verhalten, der Funktionsname und allesAndere was hier dokumentiert ist, kann sich in zukünftigen ...
- PHP Manual
- [ SWFDisplayItem->rotateTo php.net ]
- PHP Funktion
- ZIP Funktionen (Lesezugriff) ( phplist Code 12% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ...details of an entry defined by its index. ZipArchive::statName -- Get the details of an entry defined by its name. ZipArchive::unchangeAll -- Undo all changes done in the archive. ZipArchive::unchangeArchive -- Revert all global changes done in the archive. ZipArchive::unchangeIndex -- Revert all changes done to an entry at the given index. ZipArchive::unchangeName -- Revert all changes done to an entry with the given name. yp_order zip_close...
- PHP Manual
- [ ZIP Funktionen (Lesezugriff) php.net ]
- PHP Funktion
- PHP benutzen ( phplist Code 11% Relevanz )
- Rubrik
- FAQ: Frequently Asked Questions
- Kurzform
- -----
- Vorschau
- ...1. Ich möchte ein PHP-Skript schreiben, das Daten von beliebigen Formularen verarbeiten kann. Woher weiß ich, welche Variablen über die POST-Methode verfügbar sind? PHP bietet viele vordefinierte Variablen , wie das superglobale $_POST . Sie können $_POST mit einer Schleife durchlaufen, da es sich um ein assoziatives Array mit allen über die POST-Methode übertragenen Variablen handelt. Als Beispiel benutzen wir die foreach -Schleife, um auf ...
- PHP Manual
- [ PHP benutzen php.net ]
- PHP Funktion
- Migrating from PHP 3 to PHP 4 ( phplist Code 11% Relevanz )
- Rubrik
- Anhang
- Kurzform
- -----
- Vorschau
- ... in PHP 4 Running PHP 3 and PHP 4 concurrently Migrating Configuration Files Parser behavior Error reporting Initializers empty("0") Missing functions PHP 3 extension Variable substitution in strings Cookies Handling of global variables What has changed in PHP 4 PHP 4 and the integrated Zend engine have greatly improved PHP's performance and capabilities, but great care has been taken to break as little existing code as possible. So migrating ...
- PHP Manual
- [ Migrating from PHP 3 to PHP 4 php.net ]
- PHP Funktion
- mcal_event_set_recur_monthly_mday ( phplist Code 10% Relevanz )
- Rubrik
- MCAL Funktionen
- Kurzform
- mcal_event_set_recur_monthly_mday -- Sets the recurrence of the streams global event structure
- Vorschau
- ...mcal_event_set_recur_monthly_mday mcal_event_set_recur_monthly_mday (PHP 3 >= 3.0.13, PHP 4, PECL) mcal_event_set_recur_monthly_mday -- Sets the recurrence of the streams global event structure Description int mcal_event_set_recur_monthly_mday ( int stream, int year, int month, int day, int interval ) mcal_event_set_recur_monthly_mday() sets the streams global event structure's recurrence to the ...
- PHP Manual
- [ mcal_event_set_recur_monthly_mday php.net ]
- PHP Funktion
- mcal_event_set_recur_monthly_wday ( phplist Code 10% Relevanz )
- Rubrik
- MCAL Funktionen
- Kurzform
- mcal_event_set_recur_monthly_wday -- Sets the recurrence of the streams global event structure
- Vorschau
- ...mcal_event_set_recur_monthly_wday mcal_event_set_recur_monthly_wday (PHP 3 >= 3.0.13, PHP 4, PECL) mcal_event_set_recur_monthly_wday -- Sets the recurrence of the streams global event structure Description int mcal_event_set_recur_monthly_wday ( int stream, int year, int month, int day, int interval ) mcal_event_set_recur_monthly_wday() sets the streams global event structure's recurrence to the ...
- PHP Manual
- [ mcal_event_set_recur_monthly_wday php.net ]
- PHP Funktion
- rename_function ( phplist Code 10% Relevanz )
- Rubrik
- Advanced PHP debugger
- Kurzform
- rename_function -- Renames orig_name to new_name in the global function table
- Vorschau
- ...rename_function rename_function (PECL) rename_function -- Renames orig_name to new_name in the global function table Beschreibung bool rename_function ( string original_name, string new_name ) Renames a orig_name to new_name in the global function table. Useful for temporarily overriding built-in functions. Parameter ...
- PHP Manual
- [ rename_function php.net ]
- PHP Funktion
- Migration von PHP/FI 2.0 zu PHP 3.0 ( phplist Code 10% Relevanz )
- Rubrik
- Anhang
- Kurzform
- -----
- Vorschau
- ... kann, steht zur Verfügung. Zu finden ist es im convertor Verzeichnis der PHP 3.0 Distribution. Dieses Programm berücksichtigt nur Syntaxänderungen, also sollten Sie dieses Kapitel aufmerksam lesen. Handling of global variables Start-/End-Tags...
- PHP Manual
- [ Migration von PHP/FI 2.0 zu PHP 3.0 php.net ]
- PHP Funktion
- PDO-Funktionen ( phplist Code 10% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... ); ?> Wenn es Fehler bei der Verbindung gibt, wird eine Ausnahme vom Typ PDOException geworfen. Sie können die Ausnahme abfangen, wenn Sie sich selbst um die Fehlerbedingung kümmern wollen, oder Sie können es einer globalen Routine zur Ausnahmebehandlung überlassen, die Sie mit set_exception_handler() konfigurieren. Beispiel 2. Verbindungsfehler behandeln <?php try { $dbh = new PDO ( 'mysql:host=localhost;dbname=test' , $user , $pass...
- PHP Manual
- [ PDO-Funktionen php.net ]
- PHP Funktion
- Standard PHP Library (SPL) Functions ( phplist Code 10% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... von dieserErung definiert und stehen nur zur Verfügung, wenn die Erung entwederstatisch in PHP kompiliert oder dynamisch zur Laufzeit geladen wurde. Warnung SPL uses class constants since PHP 5.1. Prior releases use global constants in the form RIT_LEAVES_ONLY . RecursiveIteratorIterator::LEAVES_ONLY ( integer ) RecursiveIteratorIterator::SELF_FIRST ( integer ) RecursiveIteratorIterator::CHILD_FIRST ( integer ) CachingIterator::...
- PHP Manual
- [ Standard PHP Library (SPL) Functions php.net ]
- PHP Funktion
- Runkit_Sandbox ( phplist Code 10% Relevanz )
- Rubrik
- runkit Functions
- Kurzform
- Runkit_Sandbox -- Runkit Sandbox Class -- PHP Virtual Machine
- Vorschau
- ... enabled, then any arbitrary safe_mode_include_dir may be set while turning safe_mode on. open_basedir open_basedir may be set to any path below the current setting of open_basedir . If open_basedir is not set within the global scope, then it is assumed to be the root directory and may be set to any location. allow_url_fopen Like safe_mode , this setting can only be made more restrictive, in this case by setting it to FALSE when it is ...
- PHP Manual
- [ Runkit_Sandbox php.net ]
- PHP Funktion
- php_stream_filter_register_factory ( phplist Code 10% Relevanz )
- Rubrik
- Streams Common API Reference
- Kurzform
- -----
- Vorschau
- ... char * filterpattern, php_stream_filter_factory * factory ) Use this function to register a filter factory with the name given by filterpattern . filterpattern can be either a normal string name (i.e. myfilter ) or a global pattern (i.e. myfilterclass.* ) to allow a single filter to perform different operations depending on the exact name of the filter invoked (i.e. myfilterclass.foo , myfilterclass.bar , etc...) Anmerkung: Filters ...
- PHP Manual
- [ php_stream_filter_register_factory php.net ]
- PHP Funktion
- session_register ( phplist Code 9% Relevanz )
- Rubrik
- Session Funktionen
- Kurzform
- session_register -- Registriert eine oder mehrere globale Variablen in der aktuellen Session
- Vorschau
- ...session_register session_register (PHP 4, PHP 5) session_register -- Registriert eine oder mehrere globale Variablen in der aktuellen Session Beschreibung bool session_register ( mixed Name [, mixed ...] ) session_register() akzeptiert eine variable Anzahl von Argumenten, die jeweils entweder eine Zeichenkette sein können, ...
- PHP Manual
- [ session_register php.net ]
- PHP Funktion
- win32_ps_stat_mem ( phplist Code 9% Relevanz )
- Rubrik
- win32ps Functions
- Kurzform
- win32_ps_stat_mem -- Stat memory utilization
- Vorschau
- ...win32_ps_stat_mem win32_ps_stat_mem (no version information, might be only in CVS) win32_ps_stat_mem -- Stat memory utilization Beschreibung array win32_ps_stat_mem ( void ) Retrieves statistics about the global memory utilization. Rückgabewerte Returns 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 ...
- PHP Manual
- [ win32_ps_stat_mem php.net ]
- PHP Funktion
- OmniHTTPd Server ( phplist Code 9% Relevanz )
- Rubrik
- Installation on Windows systems
- Kurzform
- -----
- Vorschau
- ... the faq on cgi.force_redirect for important details. This directive needs to be set to 0 . Install OmniHTTPd server. Right click on the blue OmniHTTPd icon in the system tray and select Properties Click on Web Server Global Settings On the 'External' tab, enter: virtual = .php | actual = c:\php\php.exe (use php-cgi.exe if installing PHP 5), and use the Add button. On the Mime tab, enter: virtual = wwwserver/stdcgi | actual = .php , and use...
- PHP Manual
- [ OmniHTTPd Server php.net ]
- PHP Funktion
- Referenzen innerhalb des Konstruktors ( phplist Code 9% Relevanz )
- Rubrik
- Klassen und Objekte
- Kurzform
- -----
- Vorschau
- ... innerhalb des Konstruktors Referenzen innerhalb des Konstruktors können zu verwirrenden Resultaten führen. Dieser Abschnitt hilft, Probleme zu vermeiden. class Foo { function Foo($name) { // eine Referenz innerhalb des globalen Arrays $globalref erstellen global $globalref; $globalref[] = &$this; // setze den Namen auf den übergebenen Wert $this->setName($name); // und gib' ihn aus $this->echoName(); } function echoName() { echo "<...
- PHP Manual
- [ Referenzen innerhalb des Konstruktors php.net ]
- PHP Funktion
- SDO XML Data Access Service Functions ( phplist Code 9% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... with the createDocument() method. In this case there is no ambiguity about what the document element of the document should be - as the second schema file only defines complex types, the document element can only be the global jungle element defined in the first schema. This document will have a single root data object corresponding to an empty document element jungle . As this is an open type, properties can be added at will. When the first ...
- PHP Manual
- [ SDO XML Data Access Service Functions php.net ]
- PHP Funktion
- win32ps Functions ( phplist Code 9% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ...] => 3888 [pagefile_usage] => 5865472 [peak_pagefile_usage] => 5865472 ) [tms] => Array ( [created] => 0.093 [kernel] => 0.015 [user] => 0.062 ) ) */ ?> Beispiel 2. Statistics about global memory utilization <?php print_r ( win32_ps_stat_mem ()); /* Array ( [load] => 37 [unit] => 1024 [total_phys] => 1048096 [avail_phys] => 649960 [total_pagefile] => 2521368 [avail_pagefile] => 2237940...
- PHP Manual
- [ win32ps Functions php.net ]
- PHP Funktion
- Source Discussion ( phplist Code 9% Relevanz )
- Rubrik
- Zend API: Hacking the Core of PHP
- Kurzform
- -----
- Vorschau
- ... ( INTERNAL_FUNCTION_PARAMETERS ); Expanding INTERNAL_FUNCTION_PARAMETERS results in the following: void zif_my_function( int ht , zval * return_value , zval * this_ptr , int return_value_used , zend_executor_globals * executor_globals ); Since the interpreter and executor core have been separated from the main PHP package, a second API defining macros and function sets has evolved: the Zend API. As the Zend API now handles quite a ...
- PHP Manual
- [ Source Discussion php.net ]
- PHP Funktion
- Hyperwave Functions ( phplist Code 8% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... hw_InsColl -- Insert collection hw_InsDoc -- Insert document hw_insertanchors -- Inserts only anchors into text hw_InsertDocument -- Upload any document hw_InsertObject -- Inserts an object record hw_mapid -- Maps global id on virtual local id hw_Modifyobject -- Modifies object record hw_mv -- Moves objects hw_New_Document -- Create new document hw_objrec2array -- Convert attributes from object record to object array hw_Output_Document...
- PHP Manual
- [ Hyperwave Functions php.net ]
- PHP Funktion
- Session Funktionen ( phplist Code 8% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... in PHP 4.0 eingeführt. Anmerkung: Bitte beachten Sie beim Arbeiten mit Sessions, dass der Datensatz einer Session nicht angelegt wird, bevor eine Variable mit der Funktion session_register() registriert oder dem superglobalen Array $_SESSION ein neuer Schlüssel hinzugefügt wird. Das gilt auch dann, wenn eine Session mit der Funktion session_start() gestartet wurde. Sessions und Sicherheit Externe Links: Session fixation Das Session-Modul ...
- PHP Manual
- [ Session Funktionen php.net ]
- PHP Funktion
- Alten Code mit neuen PHP-Versionen benutzen ( phplist Code 8% Relevanz )
- Rubrik
- Kleines Tutorial
- Kurzform
- -----
- Vorschau
- ... einer neueren PHP-Version läuft. In der Praxis sind aber meist einige Änderungen nötig. Zwei der wichtigsten aktuellen Änderungen, die alten Code betreffen, sind: Die Missbilligung der alten $HTTP_*_VARS -Arrays (die global gemacht werden mussten, wenn man sie innerhalb einer Funktion nutzen wollte). In PHP 4.1.0 wurden die folgenden autoglobalen Arrays eingeführt: $_GET , $_POST , $_COOKIE , $_SERVER , $_FILES , $_ENV , $_REQUEST und $...
- PHP Manual
- [ Alten Code mit neuen PHP-Versionen benutzen php.net ]
- PHP Funktion
- Accepting Arguments ( phplist Code 8% Relevanz )
- Rubrik
- Zend API: Hacking the Core of PHP
- Kurzform
- -----
- Vorschau
- ... to perform their specific actions), and function arguments are the only real way to exchange data between the PHP level and the C level. Of course, there's also the possibility of exchanging data using predefined global values (which is also discussed later), but this should be avoided by all means, as it's extremely bad practice. PHP doesn't make use of any formal function declarations; this is why call syntax is always completely ...
- PHP Manual
- [ Accepting Arguments 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 release any resources which were locked or allocated during the opening and use of the directory stream. The example below implements a var:// protocol handler that allows read/write access to a named global variable using standard filesystem stream functions such as fread() . The var:// protocol implemented below, given the URL "var://foo" will read/write data to/from $GLOBALS["foo"]. Beispiel 1. A Stream for reading/writing...
- PHP Manual
- [ stream_wrapper_register php.net ]
- PHP Funktion
- Advanced PHP debugger ( phplist Code 7% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... -- Changes or sets the current debugging level apd_set_socket_session_trace -- Starts the remote session debugging override_function -- Overrides built-in functions rename_function -- Renames orig_name to new_name in the global function table apc_store apd_breakpoint...
- PHP Manual
- [ Advanced PHP debugger php.net ]
- PHP Funktion
- Runkit_Sandbox_Parent ( phplist Code 7% Relevanz )
- Rubrik
- runkit Functions
- Kurzform
- Runkit_Sandbox_Parent -- Runkit Anti-Sandbox Class
- Vorschau
- ...with the parent_read setting (in addition to the base parent_access setting). Write access, in turn, is enabled through the parent_write setting. Unlike sandbox child variable access, the variable scope is not limited to globals only. By setting the parent_scope setting to an appropriate integer value, other scopes in the active call stack may be inspected instead. A value of 0 (Default) will direct variable access at the global scope. 1 will ...
- PHP Manual
- [ Runkit_Sandbox_Parent php.net ]
- PHP Funktion
- ZipArchive::unchangeArchive ( phplist Code 6% Relevanz )
- Rubrik
- ZIP Funktionen (Lesezugriff)
- Kurzform
- ZipArchive::unchangeArchive -- Revert all global changes done in the archive.
- Vorschau
- ...ZipArchive::unchangeArchive ZipArchive::unchangeArchive (no version information, might be only in CVS) ZipArchive::unchangeArchive -- Revert all global changes done in the archive. Beschreibung mixed ZipArchive::unchangeArchive ( void ) Revert all global changes to the archive archive. For now, this only reverts archive comment changes. Rückgabewerte Gibt bei Erfolg ...
- PHP Manual
- [ ZipArchive::unchangeArchive php.net ]
- PHP Funktion
- Preparation and Housekeeping ( phplist Code 6% Relevanz )
- Rubrik
- PDO Driver How-To
- Kurzform
- -----
- Vorschau
- ... standard public PDO header files are also included in each source module: pdo/php_pdo.h This header file contains definitions of the initialization and shutdown functions in the main driver as well as definitions of global PDO variables. pdo/php_pdo_driver.h This header contains the types and API contracts that are used to write a PDO driver. It also contains method signature for calling back into the PDO layer and registering/...
- PHP Manual
- [ Preparation and Housekeeping php.net ]
- PHP Funktion
- unset ( phplist Code 0% Relevanz )
- Rubrik
- Funktionen zur Behandlung von Variablen
- Kurzform
- unset -- Löschen einer angegebenen Variablen
- Vorschau
- ... Objekteigenschaften zu löschen, die im aktuellen Kontext sichtbar sind. Das Verhalten von unset() innerhalb einer Funktion kann abhängig davon, was für einen Variablentyp Sie zu löschen versuchen, variieren. Wenn eine globalisierte Variable innerhalb einer Funktion mit unset() behandelt wird, wird nur die lokale Variable gelöscht. Die Variable innerhalb der aufrufenden Umgebung behält den selben Wert wie vor dem Aufruf von unset() . <?php ...
- PHP Manual
- [ unset php.net ]
- PHP Funktion
- Referenzen entdecken ( phplist Code 0% Relevanz )
- Rubrik
- Referenzen in PHP
- Kurzform
- -----
- Vorschau
- ... PHP Handbuch Kapitel 21. Referenzen in PHP Referenzen entdecken Viele Sprachelemente von PHP sind intern mit der Benutzung von Referenzen implementiert, daher gilt alles bisher gesagte auch für diese Konstrukte: global References Die Verwendung von global $var erzeugt im aktuellen Gültigkeitsbereich eine Referenz auf die globale Variable $var , sie ist also äquivalent zu folgendem: $var =& $GLOBALS["var"]; Dies hat zur Folge, dass...
- PHP Manual
- [ Referenzen entdecken php.net ]
- PHP Funktion
- Reservierte Wörter in PHP ( phplist Code 0% Relevanz )
- Rubrik
- Anhang
- Kurzform
- -----
- Vorschau
- ...as break case cfunction class const continue declare default die() do echo() else elseif empty() enddeclare endfor endforeach endif endswitch endwhile eval exit() extends for foreach function global if include() include_once() isset() list() new old_function print() require() require_once() return() static switch unset() use var while __FUNCTION__ __CLASS__ __METHOD__ Liste der Funktion Aliase...
- PHP Manual
- [ Reservierte Wörter in PHP php.net ]
- PHP Funktion
- Tips ( phplist Code 0% Relevanz )
- Rubrik
- Userland Naming Guide
- Kurzform
- -----
- Vorschau
- ...Tips PHP Handbuch Anhang R. Userland Naming Guide Tips In order to write future-proof code, it is recommended that you prefix (or suffix) anything that goes into the global namespace with an uncommon 3-4 letter prefix (or suffix) separated with an underscore. It is recommended that in order to prevent namespace clashes with other userland code that projects research existing prefixes (or ...
- PHP Manual
- [ Tips php.net ]