*执行的文件: /var/www/sendmail/cli_test.php*
```
// 执行的文件: cli_test.php
$count = 1;
while (true) {
// echo $count . "\r\n";
file_put_contents("./test_result.txt", $count."\r\n", FILE_APPEND);
$count++;
if($count > 10) {
break;
}
sleep(2);
}
echo "done";
```
*使用exec执行一个外部程序,该exec命令位于:/var/www/sendmail/do_queue.php*
```
// exec要用绝对路径
exec("/usr/bin/php cli_test.php");
```
*执行文件结果*
```
// 查找php安装在哪里:
[root@localhost www]# which php
/usr/bin/php
// 执行php文件:
[root@localhost www]# /usr/bin/php /var/www/sendmail/cli_test.php
```