我想在gcloud中创建一个cronjob - 但是我收到以下错误:
处理此请求的进程遇到问题,导致它退出。这可能会导致新进程用于您的应用程序的下一个请求。 (错误代码204)
这是我的代码:
<?php
header("Content-Type: text/html; charset=utf-8");
require "../simple_html_dom.php";
require "../functions.php";
require '../../vendor/autoload.php';
use Google\Cloud\Firestore\FirestoreClient;
$output = array();
scrap_info($url);
if(count($output) > 0){
$db = new FirestoreClient();
$collection = $db->collection('standings');
foreach ($output as $value) {
$collection->set([
'place' => $value[0],
'team' => $value[1],
'points' => $value[8]
]);
}
}
如何让该脚本运行?