Linux下实现php多进程
[ 2010/06/17 16:53 | by selboo ]
多进程:使用PHP的Process Control Functions(PCNTL/线程控制函数)
&nbs
&nbs
使用root执行php-fpm
[ 2010/06/03 15:17 | by selboo ]
找到文件 $src_path/sapi/cgi/fpm/fpm_unix.c里边有段代码
增加红色字段
==========================================
[color=#FF0000]#defin
增加红色字段
==========================================
[color=#FF0000]#defin
Linux下PHP支持MSSQL
[ 2010/02/07 17:21 | by selboo ]
Linux下使PHP支持MSSQL(SQL Server),需要先安装FreeTDS。
PHP官方网站:http://www.php.net 当前版本5.26
FreeTDS官方网站:http://www.freetds.org 当前版本0.82
1. 编译FreeTDS
下载FreeTDS并解压,进入该目录。
./configure --prefix=/usr/local/freetds --with-tdsver=8.0
make
make install
2. 编译PHP
使
PHP官方网站:http://www.php.net 当前版本5.26
FreeTDS官方网站:http://www.freetds.org 当前版本0.82
1. 编译FreeTDS
下载FreeTDS并解压,进入该目录。
./configure --prefix=/usr/local/freetds --with-tdsver=8.0
make
make install
2. 编译PHP
使
PHP脚本/页面执行时间类
[ 2010/02/06 01:28 | by selboo ]
计算脚本/页面执行时间的类,贴出来希望对有些朋友有用。
[code]class processtime {
var $starttime, $endtime;
function start() {
$this->starttime = $this->nowtime();
}
function end() {
$this->
[code]class processtime {
var $starttime, $endtime;
function start() {
$this->starttime = $this->nowtime();
}
function end() {
$this->