-
PHP 获取远程文件内容curl函数用法
本文是一个php通过curl实现的可以用来抓取远程网页内容的函数,感兴趣的同学参考下。 <? /** 获取远程文件内容 @param $url 文件http地址 */ function fopen_url($url) { if (function_exists('file_get_contents')) { $file_content = @file_get_contents($url); } elseif (ini_get('allow_url_fopen') && ($file = @fopen($url, 'rb'))){ $i = 0; while (!feof($file) && $i++ < 1000) { $file_content .= strtolower(fread($file, 4096)); } fclose($file); } elseif (function_exists('curl_init')) ...
PHP 2014-12-07 22:42:12 -
php下使用curl模拟用户登陆的代码示例
本文为大家讲解的是php下使用curl模拟用户登陆的代码示例,感兴趣的同学参考下。 bool curl_setopt (int ch, string option, mixed value) curl_setopt()函数将为一个CURL会话设置选项...
PHP 2014-12-07 11:33:04 -
php开启CURL扩展,让服务器支持PHP curl函数
本文为大家讲解的是php开启如何CURL扩展,让服务器支持PHP curl函数的方法,感兴趣的同学参考下。 curl()、file_get_contents()、snoopy.class.php这三个远程页面抓取或采集中用到的工具,默迹还是侵向于用snoopy.class.php,因为他效率比较高且不需要服务器特定配置支持,在普通虚拟主机中即可使用,file_get_contents()效率稍低些,常用失败的情况、curl()效率挺高的,支持多线程,不过需要开启下curl扩展...
PHP 2014-12-07 07:33:04 -
php max_execution_time执行时间问题分析
本文为大家讲解的是php max_execution_time执行时间问题分析,感兴趣的同学参考下。 大部分PHP代码执行时间都不会很久...
PHP 2014-12-07 07:21:03 -
discuz的php防止sql注入函数
本文是一个从discuz提取的php防止sql注入函数代码,感兴趣的同学参考下。 最早开始学习php的时候根本没考虑过安全方面的问题,那时候就是想能做出功能就是万岁了...
PHP 2014-12-07 04:30:05 -
mysql错误:mysqladmin: connect to server at 'localhost' failed的解决方法
本文为大家讲解的是mysql错误:mysqladmin: connect to server at 'localhost' failed的解决方法,感兴趣的同学参考下。 错误描述: 登陆mysql失败,通过mysqladmin修改密码失败,如下: [root@mysql var]# mysqladmin -u root password '123456' mysqladmin: connect to server at 'localhost' failed error: 'Access denied for user 'root'@'localhost' (using password: NO)' 解决步骤如下: 1 停止mysql服务 [root@mysql var]# /etc/init.d/mysqld stop Shutting down MySQL.... SUCCESS! 2 安全模式启动 [root@mysql var]# ...
数据库操作教程 2014-12-07 02:15:10 -
mysql错误:Can't connect to local MySQL server through socket解决方法
本文为大家讲解的是mysql错误:Can't connect to local MySQL server through socket解决方法,感兴趣的同学参考下。 错误描述: 连接mysql报找不到sock 错误如下 : [root@app60 mysqld]# /usr/bin/mysql -uroot -p Enter password: ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (111) [root@app60 mysqld]# 错误原因: mysql找不到mysql.sock的位置,比如在安装时mysql.sock的位置不是在默认目录下...
数据库操作教程 2014-12-07 01:54:04 -
mysql错误:SELECT command denied to user 'root'@'localhost' for table ...解决方法
本文为大家讲解的是mysql错误:SELECT command denied to user 'root'@'localhost' for table ...解决方法,感兴趣的同学参考下。 错误描述: 执行mysql select 查询报错: SELECT command denied to user 'root'@'localhost' for table "xxx" 问题原因: 权限不足, 解决方法: 还是数据库权限的问题,不知道为啥赋给了所有权限后还是有各种权限问题,看来有空得整理一下mysql所有相关权限的问题了... 下面才是解决这个select权限的方法: ...
数据库操作教程 2014-12-07 01:22:21 -
PHP使用fopen,curl函数读取网页文件内容的示例代码
本文为大家讲解的是PHP使用fopen,curl函数读取网页文件内容的示例代码,感兴趣的同学参考下。 php小偷程序中经常需要获取远程网页的内容,下面是一些实现代码 1.fopen实现代码: <?php $handle = fopen ("http://www.example.com/", "rb"); $contents = ""; while (!feof($handle)) { $contents .= fread($handle, 8192); } fclose($handle); ?> <?php // 对 PHP 5 及更高版本 $handle = fopen("http://www.example.com/", "rb"); $contents = stream_get_contents($handle); fclose($handle); ?> 2.curl实现代码: ...
PHP 2014-12-06 11:54:04 -
php模拟socket一次连接,多次发送数据的实现代码
本文以示例的方式为大家讲解了php模拟socket一次连接,多次发送数据的实现代码,感兴趣的同学参考下。 <?php //post.php function Post($host,$port) { //$host="127.0.0.1"; //建立连接 $conn = fsockopen($host,$port); if (!$conn) { die("Con error"); } //循环发送5次数据 // for($i = 0;$i<5;$i++) { $data="user_name=admin".$i; WriteData($conn,$host,$data); echo $i."<br />"; } fclose($conn); } function WriteData($conn,$host,$data) { $header = "POST /test.php HTTP/1.1rn"; $hea...
PHP 2014-12-06 10:21:05 -
php mysql 判断update之后是否更新了的方法
本文是一个php+mysql 执行update语句或insert语句或delete后要判断一下是否更新了数据,需要的朋友可以参考下。 首先我的建议是遇到问题摆渡一下,php手册翻上1001遍,问题迎刃而解...
PHP 2014-12-06 09:12:13 -
php采用file_get_contents代替curl实例示例
本文为大家实现的是一个php采用file_get_contents代替curl的方法示例代码,实例讲述了file_get_contents模拟curl的post方法,对于服务器不支持curl的情况来说有一定的借鉴价值,需要的朋友可以参考下 file_get_contents代替使用curl其实不多见了,但有时你碰到服务器不支持curl时我们可以使用file_get_contents代替使用curl,下面看个例子。 当用尽一切办法发现 服务器真的无法使用curl时...
PHP 2014-12-06 07:57:04