
PHP Funktionen : PHP Übersicht : PHP Manual
ini_set
PHP
Function ini_set / PHP
Funktion ini_set
phplist »
Webkatalog Script - Link Script »
PHP Function Coder »
ini_set
- PHP Funktion
- ini_set ( phplist Code 100% Relevanz )
- Rubrik
- PHP Optionen & Informationen
- Kurzform
- ini_set -- Sets the value of a configuration option
- Vorschau
- ...ini_set ini_set (PHP 4, PHP 5) ini_set -- Sets the value of a configuration option Description string ini_set ( string varname, string newvalue ) Sets the value of the given configuration option. Returns the old value on success, FALSE on failure. The configuration option will keep this new value during the script's execution, ...
- PHP Manual
- [ ini_set php.net ]
- PHP Funktion
- ini_restore ( phplist Code 67% Relevanz )
- Rubrik
- PHP Optionen & Informationen
- Kurzform
- ini_restore -- Restores the value of a configuration option
- Vorschau
- ..., PHP 5) ini_restore -- Restores the value of a configuration option Description void ini_restore ( string varname ) Restores a given configuration option to its original value. See also ini_get() , ini_get_all() , and ini_set() . ini_get ini_set...
- PHP Manual
- [ ini_restore php.net ]
- PHP Funktion
- Runkit_Sandbox ( phplist Code 38% Relevanz )
- Rubrik
- runkit Functions
- Kurzform
- Runkit_Sandbox -- Runkit Sandbox Class -- PHP Virtual Machine
- Vorschau
- ...false' , 'disable_functions' => 'exec,shell_exec,passthru,system' , 'disable_classes' => 'myAppClass' ); $sandbox = new Runkit_Sandbox ( $options ); /* Non-protected ini settings may set normally */ $sandbox -> ini_set ( 'html_errors' , true ); ?> Accessing Variables All variables in the global scope of the sandbox environment are accessible as properties of the sandbox object. The first thing to note is that because of the way ...
- PHP Manual
- [ Runkit_Sandbox php.net ]
- PHP Funktion
- main ( phplist Code 36% Relevanz )
- Rubrik
- PHP Optionen & Informationen
- Kurzform
- main -- Dummy for main()
- Vorschau
- ... documented. Tabelle 1. Known errors that point to main() Function name No longer points here as of include() 5.1.0 include_once() 5.1.0 require() 5.1.0 require_once() 5.1.0 See also html_errors and display_errors . ini_set memory_get_peak_usage...
- PHP Manual
- [ main php.net ]
- PHP Funktion
- unserialize ( phplist Code 33% Relevanz )
- Rubrik
- Funktionen zur Behandlung von Variablen
- Kurzform
- unserialize -- Erzeugt aus einem gespeicherten Datenformat einen Wert in PHP
- Vorschau
- ..., die aufgerufen wird, wenn eine undefinierte Klasse während des Deserialisierens instanziiert werden soll (um dem Erhalt des unvollständigen object "__PHP_Incomplete_Class" vorzubeugen). Nutzen Sie Ihre php.ini , ini_set() oder .htaccess , um 'unserialize_callback_func' festzulegen. Jedesmal, wenn eine undefinierte Klasse instanziiert werden soll, wird diese Funktion aufgerufen. Um dieses Feature abzuschalten, muss die Einstellung nur ...
- PHP Manual
- [ unserialize php.net ]
- PHP Funktion
- set_include_path ( phplist Code 26% Relevanz )
- Rubrik
- PHP Optionen & Informationen
- Kurzform
- set_include_path -- Sets the include_path configuration option
- Vorschau
- ...the duration of the script. Returns the old include_path on success or FALSE on failure. Beispiel 1. set_include_path() example <?php // Works as of PHP 4.3.0 set_include_path ( '/inc' ); // Works in all PHP versions ini_set ( 'include_path' , '/inc' ); ?> Beispiel 2. Adding to the include path Making use of the PATH_SEPARATOR constant, it is possible to extend the include path regardless of the operating system. In this example we add...
- PHP Manual
- [ set_include_path php.net ]
- PHP Funktion
- expect_expectl ( phplist Code 19% Relevanz )
- Rubrik
- Expect Functions
- Kurzform
- expect_expectl -- Waits until the output from a process matches one of the patterns a specified time period has passed or an EOF is seen
- Vorschau
- ... Beschreibung 0.2.1 Prior to version 0.2.1, in match parameter a match string was returned, not an array of match substrings. Beispiele Beispiel 1. expect_expectl() example <?php // Copies file from remote host: ini_set ( "expect.timeout" , 30 ); $stream = fopen ( "expect://scp user@remotehost:/var/log/messages /home/user/messages.txt" , "r" ); $cases = array ( array ( 0 => "password:" , 1 => PASSWORD ), array ( 0 => "yes/no...
- PHP Manual
- [ expect_expectl php.net ]
- PHP Funktion
- error_reporting ( phplist Code 18% Relevanz )
- Rubrik
- Error Handling and Logging Functions
- Kurzform
- error_reporting -- Gibt an welche PHP-Fehlermeldungen angezeigt werden
- Vorschau
- ... die Standardeinstellung in php.ini error_reporting ( E_ALL ^ E_NOTICE ); // Alle PHP-Fehler melden (in PHP 3 kann die Bitmaske // 63 verwendet werden) error_reporting ( E_ALL ); // Dasselbe wie error_reporting(E_ALL); ini_set ( 'error_reporting' , E_ALL ); ?> Die verfügbaren Konstanten für die Ausgabe der Fehlermeldungen sind unten angegeben. Die aktuellen Bedeutungen dieser Stufen sind bei den predefined constants beschrieben Tabelle 1. ...
- PHP Manual
- [ error_reporting php.net ]
- PHP Funktion
- Expect Functions ( phplist Code 17% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ... ( integer ) Value, returned by expect_expectl() if no pattern have been matched. Beispiele This example connects to the remote host via SSH, and prints the remote uptime. Beispiel 1. Expect Usage Example <?php ini_set ( "expect.loguser" , "Off" ); $stream = fopen ( "expect://ssh root@remotehost uptime" , "r" ); $cases = array ( array ( 0 => "password:" , 1 => PASSWORD ) ); switch ( expect_expectl ( $stream , $cases )) { case ...
- PHP Manual
- [ Expect Functions php.net ]
- PHP Funktion
- Arrays ( phplist Code 15% Relevanz )
- Rubrik
- Typen
- Kurzform
- -----
- Vorschau
- ... immer in Anführungszeichen gesetzt werden müssen. Wenn Sie nämlich Schlüssel, die Konstanten oder Variablen sind, in Anführungszeichen 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 "...
- PHP Manual
- [ Arrays php.net ]
- PHP Funktion
- PHP Optionen & Informationen ( phplist Code 15% Relevanz )
- Rubrik
- Funktionsreferenz
- Kurzform
- -----
- Vorschau
- ...max_execution_time "30" PHP_INI_ALL max_input_time "60" PHP_INI_ALL magic_quotes_gpc "1" PHP_INI_PERDIR|PHP_INI_SYSTEM magic_quotes_runtime "0" PHP_INI_ALL e Details und die Definition der PHP_INI_* Konstanten sind unter ini_set() zu finden. Hier eine kurze Erklärung derKonfigurationsoptionen: assert.active boolean Aktiviert assert() Auswertung. assert.bail boolean Beendet die Ausführung eines Skripts bei fehlgeschlagener Aussage. assert....
- PHP Manual
- [ PHP Optionen & Informationen php.net ]
- PHP Funktion
- HTTP and HTTPS ( phplist Code 10% Relevanz )
- Rubrik
- List of Supported Protocols/Wrappers
- Kurzform
- -----
- Vorschau
- ... default PHP/version setting) followed by a carriage-return/line-feed pair and any additional headers. This method works in PHP4 and all later versions. Beispiel M-3. Sending custom headers with an HTTP request <?php ini_set ( 'user_agent' , "PHP\r\nX-MyCustomHeader: Foo" ); $fp = fopen ( 'http://www.example.com/index.php' , 'r' ); ?> Results in the following request being sent: GET /index.php HTTP/1.0Host: www.example.comUser-Agent: PHPX...
- PHP Manual
- [ HTTP and HTTPS php.net ]