1、不加任何字符
<?php ?>
运行结果: : command not foundon/promotion/promo_history_cron/delete_promo_now_db.php: line 1: : 没有那个文件或目录n/promotion/promo_history_cron/delete_promo_now_db.php: line 2: ?php /var/www/project/cron/promotion/promo_history_cron/delete_promo_now_db.php: line 3: //: is a directory /var/www/project/cron/promotion/promo_history_cron/delete_promo_now_db.php: line 4: //: is a directory : command not foundon/promotion/promo_history_cron/delete_promo_now_db.php: line 5: /var/www/project/cron/promotion/promo_history_cron/delete_promo_now_db.php: line 6: include_once: command not found 2.加#!/usr/bin/php #!/usr/bin/php
<?php // 作业名:delete_promo_now_db.php // 介绍:删除现在促销库中过期的数据 include_once 'inc/conf.inc';echo "dddd";exit; 运行结果: -bash: /var/www/project/cron/promotion/promo_history_cron/delete_promo_now_db.php: /usr/bin/php^M: bad interpreter: 没有那个文件或目录 3、#!/usr/bin/php -q <?php // 作业名:delete_promo_now_db.php // 介绍:删除现在促销库中过期的数据 include_once 'inc/conf.inc';echo "dddd";exit; 运行结果: Extension '/var/www/project/cron/promotion/promo_history_cron/delete_promo_now_db.php' not present. 4、 #!/usr/bin/php -qd <?php // 作业名:delete_promo_now_db.php // 介绍:删除现在促销库中过期的数据 include_once 'inc/conf.inc';echo "dddd";exit; 运行结果:PHP: Invalid configuration directive 5、 #!/usr/bin/php -qd open_basedir=/ <?php // 作业名:delete_promo_now_db.php // 介绍:删除现在促销库中过期的数据 include_once 'inc/conf.inc';echo "dddd";exit; 运行结果: PHP Warning: include_once(inc/conf.inc): failed to open stream: Operation not permitted in /www/project/cron/promotion/promo_history_cron/delete_promo_now_db.php on line 6 PHP Warning: include_once(): Failed opening 'inc/conf.inc' for inclusion (include_path='.:/var/www/dd_inc:/var/www/db:/php/includes:/usr/lib/php') in /www/project/cron/promotion/promo_history_cron/delete_promo_now_db.php on line 6 dddd 6、 /usr/bin/php -qd open_basedir=/ /var/www/project/cron/promotion/promo_history_cron/sync_promo_history.php