我正在向 Ironworker 上传一个 .worker 文件。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';