0

我陷入了一个非常大的问题。

在我的网站中,我调用了这个函数,用于执行这个名为“sched.php”的文件

function write()

    passthru('php /var/www/html/sched.php',$err);
    return $err;
}

但什么也没做。这是我的输出:

<output of sched.php>

1 

我不明白,我的错误在哪里?

4

1 回答 1

1

尝试这个:

 include "sched.php";  //plus the path, if needed
 return $err;
于 2015-11-27T15:44:40.693 回答