string set_include_path ( string $new_include_path )
Sets the include_path configuration option
Sets the include_path configuration option for the duration of the script.
<?php
// Works as of PHP 4.3.0
set_include_path('/usr/lib/pear');
// Works in all PHP versions
ini_set('include_path', '/usr/lib/pear');
?>
Çağırılan Sınıfları Otomatik Olarak İnclude Etmek - Advanced PHP - Ders 1
0 Comment:
Post a Comment