![]() |
Home
iRate! IceMelon IM Tutorials Headlines CoolSites PHP Functions |
Most Referenced Functions » google_pagerank() » preg_replace() » imagecreatefrompng() » site_pageranks() » imagepng() » imagedestroy() » imagestring() » imagecolorallocate() » htmlentities() » fopen() » preg_match() » header() » getimagesize() » htmlspecialchars() » session_start() » ob_start() » strstr() » ob_flush() » preg_match_all() » strpos() » flush() » setcookie() » str_replace() » array2vars() » nl2br() » preg_split() » ereg() » urlencode() » ereg_replace() » readgzfile() Become a sponsor for $15/month. Link is sitewide - PR5 homepage, 20+ PR4 pages, 90+ PR3 pages. Email dave[AT]icemelon[D0T]c0m. |
PHP Functions
Function: restore_include_path (PHP 4 >= 4.3.0, PHP 5) restore_include_path -- Restores the value of the include_path configuration optionDescriptionvoid restore_include_path ( void )Restores the include_path configuration option back to its original master value as set in php.ini
Example 1. restore_include_path() example <?php echo get_include_path(); // .:/usr/local/lib/php set_include_path('/inc'); echo get_include_path(); // /inc // Works as of PHP 4.3.0 restore_include_path(); // Works in all PHP versions ini_restore('include_path'); echo get_include_path(); // .:/usr/local/lib/php ?> Related Function(s) |