后端脚本?

发布于 2024-12-31 22:40:16 字数 171 浏览 1 评论 0原文

我什至不知道如何处理这个问题。

您如何在一个 24/7 运行的网站上设置一个后端脚本,并假设每分钟发送一封电子邮件。这样的东西可以用php来写吗?例如,我不希望在浏览器中打开实际页面,服务器(在我的例子中是 Godaddy)会自动执行此操作。

我不需要物理脚本。只是一项技术可以让我这样做!!!!

I'm not even sure how to approach this one.

How would you have a backend script on a site that runs 24/7 and say sends an email every minute. Is something like this possible to write in php. For example I don't want the actual page to be open in the browser the server (Godaddy in my case) would automatically do it.

I dont need a physical script. Just a technology that would allow me to do so!!!!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

乙白 2025-01-07 22:40:16

我认为您需要查找 php-cli 和 crontab 。

I think you need to look up php-cli and crontab.

甜味超标? 2025-01-07 22:40:16

这是可能的。
您需要编写一个用于发送电子邮件的脚本并创建一个 cronjob 并确保是否可以将执行间隔设置为一分钟(最小重复时间为 15 分钟)

应循环从数据库读取数据(电子邮件地址例如),然后您可以使用 mail() 函数发送一些消息。

It is possible.
You need to write a script for sending email messages and create a cronjob and make sure if it's possible to set up execution interval to one minute (somewhere minimal repeat time is 15mins)

Data should be read from database in a loop (e-mail addresses for instance) and then you can use mail() function to send some messages.

北渚 2025-01-07 22:40:16

像这样设置一个 crontab

gt;crontab -e
*/1 * * * * php -r /path/to/script.php

它将每分钟执行你的脚本。
Godaddy 很可能在其 Web 界面上有一个选项来设置 crontabs 或 cronjobs 以使其变得简单。

Setup a crontab like so

gt;crontab -e
*/1 * * * * php -r /path/to/script.php

That will execute your script every minute.
Godaddy most likely has an option on their web interface to setup crontabs or cronjobs to make it easy.

影子的影子 2025-01-07 22:40:16

您可以使用 cron 并使用 wget 或 curl 调用脚本 url,或者编写 php-cli 应用程序。 PHP-Cli 很有趣!

You can use cron and call for a script url using i.e. wget or curl or code a php-cli app. PHP-Cli is fun!

电影里的梦 2025-01-07 22:40:16

您可以使用 crontab 每分钟发送电子邮件

使用以下命令:

crontab -e
*/1 * * * * php -r /path/to/phpscript.php

You can use crontab to send email evry minute

Use this:

crontab -e
*/1 * * * * php -r /path/to/phpscript.php
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文