到运行 php后端方式时,echo的内容会显示在哪里?
where will the content of echo be displayed when to run php backend way?
<?php
echo "i am here";
?>
对于简单的代码,
"i am here" 将在浏览器上 运行 时显示在网络上,
"i am here" 将在 运行 交互时显示在控制台上。
当 运行 我的 vps 后端方式上的代码时会发生什么?
我在我的vps机器上设置了一个crontab任务给运行代码,到时候"i am here"会显示在哪里?
视情况而定。
它将写入您的 STDOUT 通道。
根据您的 crontab 的配置方式,您将看到或不会看到此消息。
Crontab 输出可以发送到 void (/dev/null),但也可以邮寄给您,或者可以在日志中。
这与 PHP 无关,但与您的 cron 配置有关。
<?php
echo "i am here";
?>
对于简单的代码,
"i am here" 将在浏览器上 运行 时显示在网络上,
"i am here" 将在 运行 交互时显示在控制台上。
当 运行 我的 vps 后端方式上的代码时会发生什么?
我在我的vps机器上设置了一个crontab任务给运行代码,到时候"i am here"会显示在哪里?
视情况而定。
它将写入您的 STDOUT 通道。
根据您的 crontab 的配置方式,您将看到或不会看到此消息。
Crontab 输出可以发送到 void (/dev/null),但也可以邮寄给您,或者可以在日志中。
这与 PHP 无关,但与您的 cron 配置有关。