《PHP实战:PHP下的Oracle客户端扩展(OCI8)安装教程》要点:
本文介绍了PHP实战:PHP下的Oracle客户端扩展(OCI8)安装教程,希望对您有用。如果有疑问,可以联系我们。
最近的项目需要用php拜访oracle数据库,不得不在linux下给php安装oci8扩展.php也可以使用pdo拜访oracle数据库,但还是需要安装客户端.PHP学习
首先到oracle官网的这个页面下载相关的文件,注意要连数据库服务器的版本,一定要对应,否则安装成功也会连不上,同时也要区分32位、64位服务器,好比我要连的数据库服务器是oracle10.2.0.4,64位主机,那么我要下载下面三个文件:PHP学习
1.用以下命令安装PHP学习
2.安装OCI8 PHP扩展 PHP学习
3.然后执行命令PHP学习
If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the `LD_LIBRARY_PATH' environment variable
during execution
- add LIBDIR to the `LD_RUN_PATH' environment variable
during linking
- use the `-Wl,--rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to `/etc/ld.so.conf'PHP学习
See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
Installing shared extensions: /usr/local/php5/lib/php/extensions/no-debug-zts-20090626/
# cd /usr/local/php5/lib
PHP学习
4.创建ext目录PHP学习
5.在php.ini里面加上extension=oci8.soPHP学习
如下:
PHP学习
重启apache服务:PHP学习
刷新测试页面.发现oci8呈现了,则大功告成.
PHP学习
《PHP实战:PHP下的Oracle客户端扩展(OCI8)安装教程》是否对您有启发,欢迎查看更多与《PHP实战:PHP下的Oracle客户端扩展(OCI8)安装教程》相关教程,学精学透。维易PHP学院为您提供精彩教程。