Heim >Backend-Entwicklung >PHP-Tutorial >在cmd下执行PHP文件

在cmd下执行PHP文件

WBOY
WBOYOriginal
2016-06-23 14:08:541197Durchsuche

首先,我建立了一个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中不开启那些扩展就不会保错了。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn