Home > Backend Development > PHP Tutorial > 在cmd下执行PHP文件

在cmd下执行PHP文件

WBOY
Release: 2016-06-23 14:08:54
Original
1193 people have browsed it

首先,我建立了一个bat文件,里面写道
D:\wamp\bin\php\php5.3.3\php-cgi.exe -f  D:\wamp1\www\php_bat\test.php

test.php文件
$fp = @fopen("test.txt", "a+");
fwrite($fp, date("Y-m-d H:i:s") . " 让PHP定时运行吧!\n");
fclose($fp);
?>

在本地双击bat运行时,可以成功运行PHP文件。

但是在win2003服务器上确出现以下的错误:


回复讨论(解决方案)

the specified module could not be found
找不到指定的模块

你应该修改
C:\Program Files (x86)\PHP\php.ini
将其中不用的扩展都注释掉

the specified module could not be found
找不到指定的模块

你应该修改
C:\Program Files (x86)\PHP\php.ini
将其中不用的扩展都注释掉

但是上述提到的扩展在ext下面都能找到

Oracle OCI8 是pecl,另外安装,不在php安装包的,你确认有安装过?

报错的都是数据库扩展,而数据库扩展都需要运行库支持,甚至需要安装客户端

你的服务器中不可能同时都安装有那些数据库,这就是报错的主要原因

报错的都是数据库扩展,而数据库扩展都需要运行库支持,甚至需要安装客户端

你的服务器中不可能同时都安装有那些数据库,这就是报错的主要原因

在php.ini中不开启那些扩展就不会保错了。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template