ini_get PHP Funktionen : PHP Übersicht : PHP Manual

ini_get

PHP Function ini_get / PHP Funktion ini_get

phplist » Webkatalog Script - Link Script » PHP Function Coder » ini_get
PHP Funktion
ini_get ( phplist Code 100% Relevanz )
Rubrik
PHP Optionen & Informationen
Kurzform
ini_get -- Gets the value of a configuration option
Vorschau
...ini_get ini_get (PHP 4, PHP 5) ini_get -- Gets the value of a configuration option Description string ini_get ( string varname ) Returns the value of the configuration option on success. Failure, such as querying for a non-existent value, will return an empty string. When querying boolean values: A boolean ini value of off will...
PHP Manual
[ ini_get php.net ]

PHP Funktion
ini_get_all ( phplist Code 78% Relevanz )
Rubrik
PHP Optionen & Informationen
Kurzform
ini_get_all -- Gets all configuration options
Vorschau
...ini_get_all ini_get_all (PHP 4 >= 4.2.0, PHP 5) ini_get_all -- Gets all configuration options Description array ini_get_all ( [string extension] ) Returns all the registered configuration options as an associative array. If the optional extension parameter is set, returns only options specific for that extension. The returned array uses...
PHP Manual
[ ini_get_all 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
...ini_restore ini_restore (PHP 4, 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
get_include_path ( phplist Code 26% Relevanz )
Rubrik
PHP Optionen & Informationen
Kurzform
get_include_path -- Gets the current include_path configuration option
Vorschau
... get_include_path ( void ) Gets the current include_path configuration option value. Beispiel 1. get_include_path() example <?php // Works as of PHP 4.3.0 echo get_include_path (); // Works in all PHP versions echo ini_get ( 'include_path' ); ?> See also ini_get() , restore_include_path() , set_include_path() , and include() . get_extension_funcs get_included_files...
PHP Manual
[ get_include_path php.net ]

PHP Funktion
PHP Optionen & Informationen ( phplist Code 15% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
..., php.ini Speicherort, Builddatum, Webserver, Betriebssystem und mehr. INFO_CREDITS 2 PHP Credits. Siehe auch phpcredits() . INFO_CONFIGURATION 4 Gegenwätige locale und Master-Werte für PHP Einstellungen. Siehe auch ini_get() . INFO_MODULES 8 Geladene Module und ihre entsprechenden Einstellungen. INFO_ENVIRONMENT 16 Informationen über Umgebungsvariablen, die auch in $_ENV zur Verfügung stehen. INFO_VARIABLES 32 Zeigt alle vordefinierten...
PHP Manual
[ PHP Optionen & Informationen php.net ]

PHP Funktion
openssl_pkcs7_encrypt ( phplist Code 14% Relevanz )
Rubrik
OpenSSL Funktionen
Kurzform
openssl_pkcs7_encrypt -- Verschlüsseln einer S/MIME Nachricht
Vorschau
....txt" , "enc.txt" , $key , array( "To" => "nighthawk@example.com" , // keyed syntax "From: HQ <hq@example.com>" , // indexed syntax "Subject" => "Eyes only" ))) { // Nachricht verschlüsselt - ab damit! exec ( ini_get ( "sendmail_path" ) . " < enc.txt" ); } ?> openssl_pkcs7_decrypt openssl_pkcs7_sign...
PHP Manual
[ openssl_pkcs7_encrypt php.net ]

PHP Funktion
openssl_pkcs7_sign ( phplist Code 8% Relevanz )
Rubrik
OpenSSL Funktionen
Kurzform
openssl_pkcs7_sign -- Signieren einer S/MIME Nachricht
Vorschau
...mycert.pem" , "mypassphrase" ), array( "To" => "joes@example.com" , // keyed syntax "From: HQ <ceo@example.com>" , // indexed syntax "Subject" => "Eyes only" ) )) { // Nachricht signiert - abschicken! exec ( ini_get ( "sendmail_path" ) . " < signed.txt" ); } ?> openssl_pkcs7_encrypt openssl_pkcs7_verify...
PHP Manual
[ openssl_pkcs7_sign php.net ]