-
jquery的get传参数在utf-8中乱码问题的解决方法
本文为大家讲解的是jquery的ajax函数get方法在传参数时utf8乱码问题的解决方法,感兴趣的同学参考下. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1...
PHP 2014-12-14 04:42:04 -
php include的妙用,实现路径加密
本文为大家讲解的是php include函数的小技巧,实现路径加密,用这种方法比较繁琐,只能隐藏后台脚本的路径,前端的脚本路径仍然可以在源文件中看得到(baseref) 在地址栏上看到的地址都是index.php?xxxxxxx感兴趣的同学参考下. 1、中转程序include.inc <? include_once 'include/Base.php'; $path = ''; $url = isBase::decrypt(urlDecode($_SERVER['QUERY_STRING'])); parse_str($url); //获取通过url地址GET传递过来的变量 if(!empty($_POST['path'])){ //获取POST传递过来的变量 $path = $_POST['path']; $path = isBase::decrypt(urlDecode($path)); } //解析真实路径 if(empty($path)){ //he...
PHP 2014-12-14 03:54:03 -
php include,include_once,require,require_once区别
本文为大家讲解的是php中的引入文件方法 include,include_once,require,require_once的区别,感兴趣的同学参考下. 其实PHP包含文件的这四个函数,很多人还是没完全明白的,虽然用的时候多,但是具体某些地方该怎么用,用那一个,我就献丑一把...
PHP 2014-12-14 02:00:05 -
php中strstr、strrchr、substr、stristr四个函数的区别
本文主要为大家讲解的是php中strstr、strrchr、substr、stristr四个函数的区别,这4个函数是PHP中常用的字符串相关函数,感兴趣的朋友可以参考下 php中strstr、strrchr、substr、stristr四个函数用法区别: php中strstr strrchr substr stristr这四个字符串操作函数特别让人容易混淆,常用的是substr,strstr,基本上可以满足对字符串的操作。 下面介绍一下这个几个函数的区别...
PHP 2014-12-14 00:30:36 -
php Try Catch异常测试
本文为大家讲解的是php的 Try Catch异常测试,感兴趣的同学参考下. 页面try catch里使用c的 c1,c1里使用b的b1,b1里使用a的a1。 默认的是:a1里抛出异常,b1里捕获a1的异常,然后再把刚才的异常抛出,c1捕获,然后抛出,最后页面捕获并输出...
PHP 2014-12-13 11:03:04 -
php字符函数strstr,strpos,stristr使用方法
本文为大家讲解的是php中的字符串查找函数strstr,strpos,stristr的使用方法,感兴趣的同学参考下. php判断字符以及字符串的包含,可以使用PHP的内置函数strstr,strpos,stristr直接进行判断...
PHP 2014-12-13 10:51:06 -
php str_pad 函数使用详解
本文为大家讲解的是php的str_pad函数的用法,str_pad的作用是用一个字符串填充另一个指定字符串到指定长度,感兴趣的同学参考下. str_pad()函数的作用是:用一个字符串填充另一个指定字符串到指定长度。 string str_pad ( string , int pad_length , string pad_string , int pad_type); string 指定字符串,pad_length指定长度,pad_string用来填充的字符串(可选参数),pad_type指定填充位置(可选参数,STR_PAD_LEFT,STR_PAD_BOTH); 如果pad_string , pad_type均为空,那么就等于默认pad_string 为空格, pad_type就是自动填充在指定字符串的末端. <? $string = "test"; echo str_pad($string , 10); // produces "test "; ?> 其余两个例子: <? ...
PHP 2014-12-13 09:30:09 -
php preg_match_all结合str_replace替换内容中所有img
本文是一个php结合preg_match_all函数结合str_replace函数实现的可以用来替换内容中所有img标签的代码,感兴趣的同学参考下. 最近做站的时候,采集了大量的数据,但采回来的数据基本上都要经过过滤原站保留的数据,其中IMG就是一个地方。网站上好多这些应用例子似乎没有必要“秀”出来,但站已几天没写日志,那就来一个吧 采集回来的图片img标签中,有好多javascript脚本和无用的信息,必需过替换自己想要的,比如alt...
PHP 2014-12-13 07:36:04 -
php strtotime 函数使用方法
本文为大家讲解的是php中的strtotime函数的用法,strtotime函数可以用来返回指定日期格式的时间戳,感兴趣的同学参考下 int strtotime ( string time [, int now]) 本函数预期接受一个包含英文日期格式的字符串并尝试将其解析为 UNIX 时间戳。 如果 time 的格式是绝对时间则 now 参数不起作用...
PHP 2014-12-13 06:09:03 -
php错误: file_put_contents(xxxx) [function.file-put-contents]: failed to open stream: Permission denied in原因及解决方法
PHP 错误: file_put_contents(xxxx) [function.file-put-contents]: failed to open stream: Permission denied in 原因: file_put_contents函数在向指定文件写入数据时权限不足写入失败 解决方法: 修改被写入的文件权限,如果是自动创建的文件,则目录没有权限,需要把目录赋予可写权限 linux下 chmod -R 777 ...
PHP 2014-12-13 03:42:03 -
PHP Warning: include() [function.include]: Failed opening '/xxxx.php' for inclusion (include_path='.:/xxx/xxx/php/lib/php') in xxx.php解决方法
PHP 提示错误: include() [function.include]: Failed opening '/xxxx...
PHP 2014-12-13 03:33:04 -
PHP Warning: include(xxx.php) [function.include]: failed to open stream: Permission denied in原因及解决方法
php提示错误:PHP Warning: include(xxx.php) [function...
PHP 2014-12-13 02:30:06