PHP

PHP Unable to allocate memory for pool错误

jerry PHP
这几天为Web服务器上PHP安装了APC扩展,最近老是提示Warning: require_once() [function.require-once]: Unable to allocate memory for pool.在网上Google了一下,原来是我为APC扩展分配的cache空...
阅读全文

PHP基于Dom方式的网页采集的实现

jerry PHP
require('phpQuery/phpQuery.php'); $s=file_get_contents('http://tech.163.com/digi/09/0223/19/52S47HNQ001624J2.html'); $doc=phpQuery::newDocumentH...
阅读全文

PHP取GB2312编码字符串首字母的方法

jerry PHP
php取GB2312编码字符串首字母的方法

PHP汉字转拼音

jerry PHP
PHP汉字转拼音

CURL 错误码 中文翻译

jerry PHP
错误代码列表

IP限制程序

jerry PHP

discuz防刷新、防外部提交研究

jerry PHP
防外部提交的做法 formhash值只要是为了防止灌水机从外部提交 DiscuzX2.5 /source/function/function_core.php function formhash($specialadd = '') {    

PHP 截取字符串

jerry PHP
PHP 截取字符串 1. 截取GB2312中文字符串 <?php //截取中文字符串 function mysubstr($str, $start, $len) { $tmpstr = ""; $strlen = $start + $len; for(...
阅读全文

如何写出好的 PHP 代码?

jerry PHP
编写良好的代码是一种艺术。如果一个程序员遵循一些良好的编程习惯,那么他就可以成为一个优秀的程序员。实际上,相对于你写代码的时间,你很可能会花更多的时间在代码维护上;更

PHP常用函数类

jerry PHP
<?php class useful{ /* * 常用函数类 * 作 者:多菜鸟 * 联系邮箱:kingerq AT msn DOT com * 创建时间:2005-07-18 * 来源:http://blog.csdn.net/kingerq */ ...
阅读全文