gpt4 book ai didi

PHP 简单解析器每天只运行一次

转载 作者:可可西里 更新时间:2023-11-01 14:01:18 24 4
gpt4 key购买 nike

我正在使用 simple_html_dom 脚本来解析来自网站的值。

我的代码:

<?php

include('simpleparser/simple_html_dom.php');

$html = file_get_html('http://www.example.com');

foreach($html->find('strong') as $e) // the tag that I am fetching
echo $e->innertext ;

?>

现在,我只想每天运行一次这个作为数据,我每天只解析一次更新。

我已经阅读了几篇关于 cron 任务的文章,但无法让它工作。这些示例似乎使事情过于复杂,与我的案例无关。我的托管计划禁用了 cron 调度程序并且没有 shell 访问权限,我不知道如何设置它。

最佳答案

创建cronjob从命令行使用:

#write out current crontab
crontab -l > mycron
# echo new cron into cron file | runs everyday at 22h
echo "* 22 * * * php /full/path/to/script.php" >> mycron
#install new cron file
crontab mycron
rm mycron

要使用 Parallels Plesk 面板 创建一个 cronjob,请查看 this answer


更新:

I have no shell access and cronjob disabled in my Plesk Panel.

使用在线 cronjob https://www.setcronjob.com/

关于PHP 简单解析器每天只运行一次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33113515/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com