
php
文章平均质量分 81
abcs007
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
apache php 模块添加
php在安装的时候可以添加参数:./configure --with-config-file-scan-dir=/etc/php5/conf.d 这样,在/etc/php5/conf.d/中的ini文件将会自动加载的php.ini中。php添加模块的基本流程:下载源代码,解压,进入源代码目录,依次执行命令 phpize, ./configure, make, make in...2010-03-18 16:01:40 · 128 阅读 · 0 评论 -
ant编译php
安装ant需要配置好java环境,配置好后,进入源代码中(/usr/local/ant)./build.sh..........compile-tests:test-jar:BUILD FAILED/usr/local/ant/build.xml:1021: The following error occurred while executing this line:/...2010-03-31 19:03:47 · 219 阅读 · 0 评论 -
linux apache php 安装
linux 下apache安装:拿到源代码,解压,./config ; make; make install; 在默认安装路径下,安装程序在/usr/local/apache2, 要解析的web代码放在 /var/www/html, 配置文件在 /etc/httpd/conf.d php拿到php源代码,解压, ./configure --with-apx...原创 2010-02-08 16:54:18 · 178 阅读 · 0 评论 -
php 抓取页面内容
1,运用函数file_get_contents函数<?php$url = "http://www.baidu.com"; $contents = file_get_contents($url); //如果出现中文乱码使用下面代码 $getcontent = iconv("gb2312", "utf-8",$contents); echo $content...原创 2010-02-09 11:10:39 · 126 阅读 · 0 评论 -
php5.3 Deprecate 解决方法
Deprecated: Function ereg_replace() is deprecated in ....Deprecated:Assigning the return value of new by reference is deprecated in .............修改php.ini中下面代码;extension=php_mbstring.dll改为ex...2010-02-25 11:48:25 · 196 阅读 · 0 评论