CMD 中的 Php.exe 抛出“调用未定义的函数 oci_connect()”
我在 Windows XP 中随 PHP 5.2.6 安装了 XAMPP。在我的 php.ini 中,我的下一行未注释:
- extension=php_oracle.dll
- extension=php_oci8.dll
我有一个包含以下内容的文件:
<?php
$conn = oci_connect('hr', 'welcome', 'localhost/XE');
?>
但是当我尝试通过 cmd 对该文件调用 php.exe 时,控制台总是给出我的一个错误:
致命错误:调用未定义的函数 oci_connect()
在我的本地主机中,我对此没有问题。
I have XAMPP installed with PHP 5.2.6 in Windows XP. In my php.ini I have the next lines uncommented:
- extension=php_oracle.dll
- extension=php_oci8.dll
I have a file with something like this:
<?php
$conn = oci_connect('hr', 'welcome', 'localhost/XE');
?>
But when I try call to php.exe through cmd to that file, the console always give me an error:
Fatal Error: Call to undefined function oci_connect()
In my localhost I have no problem with this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能您没有在命令行中查看正确的 php.ini 文件。
在 php.exe 中,运行:
然后在顶部查找 php.ini 路径。
Probably, you're not looking at the right php.ini file for the command line.
In php.exe, run:
then look for the php.ini path at the top.