PHP所需文件



我正在上传一个。worker文件到ironworker。worker的代码需要(使用require命令)其他php文件。我需要把它们也上传到ironworker吗?

换句话说,我是否需要在.worker文件中添加其他内容以及如何添加:

# define the runtime language
runtime "php"
# exec is the file that will be executed:
exec "hello.php"

WHERE: hello.php将包含以下语句:

require_once 'bye.php';

是。IronWorker运行在铁上。Io的服务器,所以需要上传所有的依赖项。

您可以使用dirfile命令在worker文件中执行此操作:

dir 'path/to/dir'
file 'path/to/file.php'

Dir将包含整个目录,file将只包含单个文件。您可以在.worker参考页面找到更多信息。

相关内容

  • 没有找到相关文章

最新更新