php命令行(cli)模式下报require 加载路径错误的解决方法_PHP
今天,同事突然告诉我,我写的一个做计划任务的php脚本执行总是不成功。
脚本本身很简单,里面只有包含了几个库文件并执行了一个函数,函数应该没有错误,这个函数在别处也调用过,没有问题。我在本地用浏览器访问页面,执行成功,看来没有问题,我有点怀疑是同事的计划任务的问题。我又打开命令行,用php直接执行脚本,这回报错了,是require 包含文件错误,看来是路径不对。
不明白是什么原因引起的,只是从报错来看是路径不对,我猜测是跟相对路径有关,于是把相对路径的全部改成绝对路径,再执行,问题解决。
在百度上搜索之后,知道是用php执行脚本时,执行脚本的位置是当前执行php命令的路径,所以相对路径就不对了。解决问题的办法有两个:
一、改用绝对路径,这个比较麻烦,所有包含的文件包括直接包含的文件里包含的文件路径,有一个不对就有可能出错,所以只有当执行文件比较简单的时候可用。
二、使用chdir函数,改变当前执行目录,把目录改为文件所在目录,chdir(dirname(__FILE__));
最后,简单介绍下PHP的cli命令行模式吧
首先,进入PHP的CLI(Command line interface) mode
cyguin-> $ ./php --ini(显示配置文件信息)
将显示:
configuration file(php.ini) path: c:/Windows Loaded configuration file: c:/wamp/bin/php/php5.3.0/php.ini scan for additional .ini files in: (none) additional .ini files parsed: (none)
$./php --help (会显示PHP具体信息)
$./php --rf
$./php --fc
$./php --re
$./php --ri
$./php -l
如:$./php -l c:/wamp/www/1.php
运行结果: No Syntax errors detected in xxx
$./php -v :显示版本信息和运行模式cgi/cli
运行结果:
PHP 5.3.0 (cli) (built: Jun 29 2009 21:25:23)
Copyright (c) 1997-2009 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2009 Zend Technologies
$./php -f
如:$./php -f c:/wamp/www/1.php
$./php -h :显示帮助文件
$./php -r </strong> : 运行PHP代码,不需要使用<?php ?>标签<br />
如:$./php -r 'print("hello!");' 或 $./php -r 'echo "hello!";'<br />
运行结果: hello!<br />
</p>
<p><strong>$./php -a </strong>:进入交互模式<br />
在linux下会出现:<br />
<span style="color: #0000ff">php></span><br />
在windows下:<br />
需要输入:<br />
</p>
<p>
<div class="code" style="position:relative; padding:0px; margin:0px;"><pre class='brush:php;toolbar:false;'>
<&#63;php
echo "hello world!";
&#63;></pre><div class="contentsignin">Copy after login</div></div>
</p>
<p><br />
然后ctl+c,以获得输出。<br />
在PHP5.3.0中,不能直接这样用,因为不能直接得到结果。<br />
</p>
<p>
<div class="code" style="position:relative; padding:0px; margin:0px;"><pre class='brush:php;toolbar:false;'>
<&#63;php
echo "hello world!";
&#63;>
</pre><div class="contentsignin">Copy after login</div></div>
</p>
<p>先输入ctl+z,然后再输入ctl+c,就会得到结果。<br>
</p>
<p><strong>$./php -c</strong> : 指定查找php.ini的位置,或者指定一个特定的ini文件。<br>
</p>
<p><strong>$./php -n </strong>: 不使用php.ini<br>
</p>
<p><strong>$./php -d foo [=bar] </strong>: 定义INI文件中foo entry的值是bar<br>
</p>
<p><strong>$./php -m</strong> : 显示所有的模块,php modules和zend modules<br>
</p>
<p><strong>$./php -e </strong>: Generate extended information for debugger/profiler<br>
</p>
<p><strong>$./php -B <begin_code> </begin_code></strong>: 处理标准输入签执行的代码。PHP5新加。<br>
如:<br>
$./php -B 'echo "hello world";'<br>
输出结果:hello world<br>
</p>
<p><strong>$./php -R <code>
: 为每一行执行的php代码。PHP5新加。
$./php -F
$./php -H
$./php -s : 显示HTML语法高亮的代码
$./php -w : 得到去掉空格和注释后的代码
如:
$./php -w c:/www/1.php
$./php -z
$pwd :显示当前路径
--enable-cli, --enable-cgi

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
