PHP CURL-php的经典例子 阅读次数: 6,436 限制IP访问 <?php $client_ip = getip(); $referer = getreferer(); $allow_ip = '192.168.1.100'; $allow_r... 11月06日 6,436 发表评论 收藏 阅读全文
PHP 正则知多少 阅读次数: 7,299 html的过滤 $str=preg_replace("/\s+/", " ", $str); //过滤多余回车 $str=preg_replace("/<< >+/si","<",$str... 11月06日 7,299 发表评论 收藏 阅读全文
PHP 隐藏apache版本号 PHP版本号 阅读次数: 5,508 httpd-default.conf 1 2 3 ServerTokens Prod ServerSignature Off php.ini 1 expose_php Off 重启服务器 10月23日 5,508 发表评论 收藏 阅读全文
PHP PHP Notice: Undefined index: HTTP_HOST in /usr/local/apache2/htdocs/index.php 阅读次数: 16,392 出现这种错误的解决方法 出现原因:没有配置ServerName <VirtualHost *:80> ServerName xxx.com ServerAlias www.xxx.com ... 10月21日 16,392 发表评论 收藏 阅读全文
PHP php-二维码添加logo图片 阅读次数: 5,661 不多说了,生成二维码就用经典的QRcode插件完成。 至于生成二维码后怎么添加自己的logo图片呢。 过程分析:把需要放入的logo图片缩小放入二维码图片的中间。 具体过程:1,计算出在二维码中可以放... 09月30日 5,661 发表评论 收藏 阅读全文
PHP php5.2与php5.4的区别–转载于CSDN 阅读次数: 4,700 php5.3和之前的版本函数 差异 总结之路 1:Function ereg() is deprecated Error 错误对策 Deprecated: Function ereg() is dep... 09月15日 4,700 发表评论 收藏 阅读全文