Home >Backend Development >PHP Tutorial >linux上用php脚本调用另一个php脚本

linux上用php脚本调用另一个php脚本

WBOY
WBOYOriginal
2016-06-13 11:07:411077browse

linux下用php脚本调用另一个php脚本
这个linux空间就只有ftp权限开放给我~~现在想写一个脚本first.php来定时执行second.php
执行second.php不知道怎么写~~


first.php

<br />ignore_user_abort(TRUE);// 设定关闭浏览器也执行程序 <br />set_time_limit(0);      // 设定响应时间不限制<br /><br />while (TRUE) {   <br /><br />//这里的执行second.php不知道怎么写~~~求指点~谢谢<br /><br />sleep(86400)<br />} 

------解决方案--------------------
如果是想执行second.php ; 直接调用exec或者system。
如果只是想require 或者include,建议在while 外面做。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn