一、问题 公司有一台老的Linux服务器,Apache+MySQL+Php结构的, 要把最近做的一个PHP项目部署到上面,做为测试环境, 由于新项目是用PHP的YII框架开发的,而YII框架的数据访问使用PDO接口的,因此需要PDO_Mysql驱动的支持。 【注:当前,PDO已成为PHP访问数
一、问题
公司有一台老的Linux服务器,Apache+MySQL+Php结构的, 要把最近做的一个PHP项目部署到上面,做为测试环境,
由于新项目是用PHP的YII框架开发的,而YII框架的数据访问使用PDO接口的,因此需要PDO_Mysql驱动的支持。
【注:当前,PDO已成为PHP访问数据库的主要方式,这也是面向接口编程的设计思想。
PHP高版本也都内置了PDO、PDO-SQLite、PDO-Mysql的支持。相信现在大部分的PHP服务器上都支持PDO了。
如果您现在还在用老的 mysql mysqli方式的话,不放用用PDO。】
二、思路
为PHP配置PDO-Mysql驱动无非两种方式,
一种是重新编译、安装、配置PHP,在configure的时候加上--with-pdo-mysql参数即可,
另外一种就是在现有PHP的基础上,增加一个pdo-mysql扩展。
本着方便快速的原则,我们选择了在现有基础上增加pdo-mysql driver的方式。
三、具体操作
0、准备
首先要知道自己当前的php安装在什么位置,假设位于 /user/local/php
目录结构大致是这样的,
bin
etc
include
lib
logs
man
找到这几个文件,下面会用到:
lib/php.ini php的配置文件,想必您不会陌生,也有可能在etc目录下,看您的具体情况
bin/phpize 这是在不重新编辑php的情况下,为php增加新的扩展的
bin/php-config php-config是个脚本文件,用来得到一些php的相关信息,比如php安装在哪个目录,扩展库路径是什么等等。 如果您的系统中安装了不止一个php版本, 这个参数会比较有用,用来指定您的扩展安装到哪个php版本上。
另外,要知道自己的Mysql安装在什么地方,
这里假设位于 /usr/local/mysql
1、下载pdo-mysql驱动的源码
网址在 http://pecl.php.net/package/PDO_MYSQL ,从官方网页可以看到这种方式已经不被鼓励使用了,
因为PDO都已经集成到PHP内核中了,只需编译的时候加个参数即可。
以下步骤按顺序操作:
wget http://pecl.php.net/get/PDO_MYSQL-1.0.2.tgz
tar zxvf PDO_MYSQL-1.0.2.tgz
cd PDO_MYSQL-1.0.2
/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config --with-pdo-mysql=/usr/local/mysql
make
make install
这时,pdo-mysql驱动就已经编译完成了,
一般就在这个目录
/usr/local/php/lib/php/extensions/no-debug-non-zts-20090626
这里是php扩展的存放位置,可能已经有了很多其他的扩展了,如memcache.so
查看一下该目录,应该已经可以看到 pdo_mysql.so 库文件了。
2、配置php.ini文件
vi /usr/local/php/lib/php.ini
找到 extentions 这一个配置段, 接着增加 pdo_mysql.so 就行了
extension_dir = "/usr/local/php/lib/php/extensions/no-debug-non-zts-20060613/"
extension = "memcache.so"
extension = "pdo_mysql.so"
3、重启apache服务器,就算完成了
apache/bin/apachectl restart
4、phpinfo看一下,是否生效
写一个php文件,简单的一句话 phpinfo()
打开 http://www.aaa.com/test.php
搜索pdo
会看到如下的提示,说明pdo已经支持mysql驱动了,就可以在php中通过pdo操作mysql数据库了。
PDO drivers sqlite, sqlite2, mysql

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


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

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version
Useful JavaScript development tools

SublimeText3 Linux new version
SublimeText3 Linux latest version
