$_SERVER[#39;DOCUMENT_ROOT#39;] does not work in the php script running through cron ($_SERVER[DOCUMENT_ROOT] 在通过 cron 运行的 php 脚本中不起作用)
问题描述
我使用 $_SERVER['DOCUMENT_ROOT']."/lib/sft_required.php";在 PHP 脚本中包含sft_required"文件.当我使用浏览器运行此文件时,它工作正常,但是当我将它作为 cron 作业运行时,它不起作用.我们通过cron运行脚本的时候好像没有包含这个文件.
I use $_SERVER['DOCUMENT_ROOT']."/lib/sft_required.php"; to include the 'sft_required' file in a PHP script. When I run this file using browser, it works fine but when I run this as a cron job job, it does not work. It seems that the file is not included when we run the script through cron.
推荐答案
假设您直接通过 cron 运行脚本(而不是从由 cronjob 触发的 HTTP 请求访问的 Web 服务器(例如通过 cron 运行 wget)),那当然不行.
Assuming you are running the script directly through cron (as opposed to from a web server accessed by an HTTP request triggered by a cronjob (e.g. by cron running wget)), then of course it doesn't work.
没有服务器,所以没有设置$_SERVER
.
There is no server, so $_SERVER
is not set.
这篇关于$_SERVER['DOCUMENT_ROOT'] 在通过 cron 运行的 php 脚本中不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:$_SERVER['DOCUMENT_ROOT'] 在通过 cron 运行的 php 脚本中不起作用
基础教程推荐
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 使用 PDO 转义列名 2021-01-01
- HTTP 与 FTP 上传 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01