我有一堆带有PHP脚本的网站,它运行foreach
循环并做了很多东西
我将在另一个文件中获取数组中的所有网站,如下所示:
$site_array = array(
'http://example.com/',
'http://website.com/'
...
);
我每天晚上太平洋标准时间晚上11点左右都会有一个cron作业。 (我们在这个时间点对这些网站进行了大约0次访问)。我有超过1,000个网站并且还在计算中。如果我只是做了这样的foreach循环:
foreach( $site_array as $site ){
// Visit "$site.'/my_script.php'" via cURL to do run the foreach loop and do stuff
}
我有一种感觉会给服务器带来巨大的压力(他们只在一台服务器上)。
在每个网站的脚本中,我可以告诉Cron Job命中的文件吗?
foreach( $site_array as $site ){
// Visit "$site.'/my_script.php'"
// when "$site"'s ForEach loop is done, move to the next $site after a break
}
答案 0 :(得分:0)
放在它之后
<td v-for="h in hs">{{h}}</td>