|
Home
iRate! IceMelon IM Tutorials Headlines CoolSites PHP Functions |
|
Most Referenced Functions » google_pagerank() » preg_replace() » htmlentities() » imagecreatefrompng() » site_pageranks() » imagepng() » imagestring() » imagedestroy() » imagecolorallocate() » header() » preg_match() » session_start() » getimagesize() » ob_start() » urlencode() » flush() » str_replace() » array2vars() » strpos() » fopen() » htmlspecialchars() » nl2br() » preg_match_all() » setcookie() » strstr() » ob_flush() » ereg() » preg_split() » ereg_replace() » var_dump() Our Sponsors » Weblog Community » Listen to Podcasts » Rock Music Community - meet fans 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) |