Archive for the ‘PHP’ Category

eAccelerator 配置和参数

四月 22, 2011 | In: PHP

背景 eAccelerator...

php 5.3.3 中的php-fpm配置

七月 25, 2010 | In: PHP

php 5.3.3 源码中开始包含 php-fpm,不用专门再打补丁了,只需要解开源码直接configure,关于php-fpm的编译参数有 –enable-fpm –with-fpm-user=www –with-fpm-group=www –with-libevent-dir=libevent位置。 这个php-fpm...

PHP的Google翻译API

四月 8, 2010 | In: PHP

< ?php /** * Google翻译的API */ class Google_translate_API { public $out = ""; public $text = ""; public $opts = array("text" => "", "language_pair" => ""); function setValues($text,$fromLanguage,$toLanguage) { if($text !=...