Copy the code The code is as follows:
/var/www/html/bt/e/BtSys:.:/usr/share/pear:/usr/share/phpPHP Warning: require(../class/ connect.php): failed to open stream: No such file or directory in /var/www/html/bt/e/BtSys/torrents-scrape.php on line 17
PHP Fatal error: require(): Failed opening required ' ../class/connect.php' (include_path='/var/www/html/bt/e/BtSys:.:/usr/share/pear:/usr/share/php') in /var/www/html /bt/e/BtSys/torrents-scrape.php on line 17
Copy the codeThe code is as follows:
// setting include path
$cur_dir= getcwd();
$cur_dir=$basedir = dirname(__FILE__);
$path = ini_get('include_path');
ini_set("include_path", "$cur_dir:$path");
$path = ini_get(' include_path');
//echo $path;
require(../class/a.php)
require(../class/b.php)
............ .
Copy the code The code is as follows:
$cur_dir = dirname(__FILE__);
chdir($cur_dir);
require(../class /a.php)
require(../class/b.php)
The above introduces the revolutionary.io php cli method to run in crotab, including the content of revolutionary.io. I hope it will be helpful to friends who are interested in PHP tutorials.