-
mysql错误:The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement解决方法
本文为大家讲解的是mysql错误:The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement解决方法,感兴趣的同学参考下。 错误描述: mysql> grant all on cactidb.* to dbuser@'localhost' identified by '123'; ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement 解决方法: 先刷新一下权限表...
数据库操作教程 2014-12-09 03:09:06 -
PHP+jQuery 注册模块开发详解
本文为大家讲解的是一个PHP+jQuery注册模块的全过程,包含填写栏目用户名、邮箱、密码、重复密码、验证码等,非常的详细,感兴趣的同学参考学习下。 写了一个简单的PHP+jQuery注册模块,需要填写的栏目包括用户名、邮箱、密码、重复密码和验证码,其中每个栏目需要具备的功能和要求如下图: 在做这个模块的时候,很大程度上借鉴了网易注册(http://reg.163.com/reg/reg.jsp?product=urs)的功能和样式...
PHP 2014-12-08 23:35:24 -
PHP+jQuery实现的列表分页的功能代码
本文是一个php+jquery实现的分页示例代码,感兴趣的同学参考下。 做了一个列表分页的功能模块,主要的文件包括分页类 page.class.php 和 控制 ajax 分页的ajax.js,主要功能有: 1.可以选择 3 种常见的 url 分页格式; 2.可以选择 url 分页 还是 ajax 分页; 3.两种分页方式都可以自定义分页 a 标签的文字; 4.url 分页方式可以自定义分页偏移量; 5.url 分页方式可以选择手动跳转方式:手动输入页码跳转 或 下拉菜单选择页码跳转...
PHP 2014-12-08 18:12:43 -
php使用curl抓取https的内容的函数
本文是一个php结合curl实现的可以用来抓取https网页内容的函数代码,感兴趣的同学参考下。 直接用file_get_contents,会报错; $url = (https://xxx.com"); file_get_contents($url); 错误: Warning: file_get_contents(https://xxx.com) [function.file-get-contents]: failed to open stream: No such file or directory in D:wampwwwgrabber_clientindex.php on line 3 用curl的方式是可以的: $url = (https://xxx.com); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL,$url); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_S...
PHP 2014-12-08 10:30:04 -
PHP 最大运行时间 max_execution_time修改方法
本文为大家讲解的是php中如何修改脚本的最大执行时间(超时时间),有二种方法,一种是修改php.ini,一种是用ini_set在脚本头中定义,感兴趣的同学参考下。 本文为大家讲解的是在脚本头中通过ini_set来设置脚本最大执行时间 方法如下: //修改最大执行时间 ini_set("max_execution_time", 2400); // s 40 分钟 //修改此次的最大运行内存 ini_set("memory_limit", 1048576000); // Byte 1000 兆,即 1G 修改的参数只在本次运行脚本的时候生效!...
PHP 2014-12-08 06:33:05 -
php错误:Fatal error: Call to undefined function curl_init()解决方法
本文为大家讲解的是php错误:Fatal error: Call to undefined function curl_init()的解决方法,感兴趣的同学参考下。 原因: php没有启用curl扩展 解决方法: 在php.ini中加上以下的代码,如果有的话,就掻extension前面的分号去掉...
PHP 2014-12-08 06:15:04 -
php curl POST 编码方式 multipart/form-data与application/x-www-form-urlencode的区别
本文为大家讲解了php curl POST 编码方式 multipart/form-data与application/x-www-form-urlencode的区别,感兴趣的同学参考下。 需求背景 CURL在 a.php 中以 POST方式向 b.php 提交数据,但b.php无法接收到数据,而 CURL 操作显示成功...
PHP 2014-12-08 05:54:07 -
PHP CURL模拟GET及POST函数方法
本文是一个PHP实现的通过 CURL模拟GET及POST函数的示例方法,感兴趣的同学参考下。 <?php function vcurl($url, $post = '', $cookie = '', $cookiejar = '', $referer = ''){ $tmpInfo = ''; $cookiepath = getcwd().'./'.$cookiejar; $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']); if($referer) { curl_setopt($curl, CURLOPT_REFERER, $referer); } else { curl_setopt($curl, CURLOPT_AUTOREFERER,...
PHP 2014-12-08 01:15:06 -
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 array_unique之后json_encode需要注意的问题
本文为大家讲解的是php array_unique之后json_encode需要注意的问题,感兴趣的同学参考下。 例如:array_unique(array(1, 1, 2)); 他的结果是 array(2) { [0]=> int(1) [2]=> int(2) } 这就不是numeric数组了,直接做json_encode,会输出一个json对象,而不是数组 {"0":1,"2":2} 如果这时候页面上js需要的是[1,2]这种数组数据格式,就有可能会产生错误 此时应该在array_unique之后,在做一个array_values 这样:array_values(array_unique(array(1, 1, 2))); 结果就是[1,2]...
PHP 2014-12-07 20:42:06 -
php下使用curl模拟用户登陆的代码示例
本文为大家讲解的是php下使用curl模拟用户登陆的代码示例,感兴趣的同学参考下。 bool curl_setopt (int ch, string option, mixed value) curl_setopt()函数将为一个CURL会话设置选项...
PHP 2014-12-07 11:33:04