php开发中常用函数集合_第1页
php开发中常用函数集合_第2页
php开发中常用函数集合_第3页
php开发中常用函数集合_第4页
php开发中常用函数集合_第5页
已阅读5页,还剩32页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、= 0;$aaa-) $dx=$dx.$size$aaa; $size= $dx; for($i=0;$i=floor(strlen($size)-1)/3);$i+)$i=0?$begin=0:$begin=$i*3;/b=$begin; $end=$begin+2;for($begin;$begin= 0;$aaa-) $dx=$dx.$res$aaa; return $dx; / unset($dx);elsereturn false;/*- 函数名:w_or_r- 作 用:文件读写权限- 参 数:$type,$filename- 返回值:布尔- 实 例:echo w_or_r(r,ll

2、0617.rar);*/function w_or_r($type,$filename)if(file_exists($filename)if($type=w)if(is_readable($filename)return 可读;elsereturn 不可读;elseif($type=r)if(is_writable($filename)$path=/txt|asp|php|ini|html|htm|temp/i;$path_parts = pathinfo($filename);$string=$path_partsextension;if(preg_match_all($path, $st

3、ring,$re) return 编辑;else return 可写;else return 不可写; elsereturn false;/*- 函数名:getPageContent和replaceHtmlAndJs(必须)- 作 用:php获取网页标题和内容函数(不包含html标签),可用作类似chinaz的Meta信息检测- 参 数:$url 所要得到的网址- 返回值:数组- 实 例:$a = getPageContent(); print_r($a); */function getPageContent($url) $pageinfo = array

4、(); $pageinfocontent_type = ; $pageinfocharset = ; $pageinfotitle = ; $pageinfodescription = ; $pageinfokeywords = ; $pageinfobody = ; $pageinfohttpcode = 200; $pageinfoall = ; $ch = curl_init(); curl_setopt($ch, CURLOPT_USERAGENT, Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0); curl_setopt($ch

5、, CURLOPT_RETURNTRANSFER,1); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,0); curl_setopt($ch, CURLOPT_TIMEOUT, 8); curl_setopt($ch, CURLOPT_FILETIME, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_HEADER, 1); curl_setopt($ch, CURLOP

6、T_URL,$url); $curl_start = microtime(true); $store = curl_exec ($ch); $curl_time = microtime(true) - $curl_start; if( curl_error($ch) ) $pageinfohttpcode = 505; /gate way error echo Curl error: . curl_error($ch) .n; return $pageinfo; /print_r(curl_getinfo($ch); $pageinfohttpcode = curl_getinfo($ch,C

7、URLINFO_HTTP_CODE); /echo curl_getinfo($ch,CURLINFO_CONTENT_TYPE).n; $pageinfocontent_type = curl_getinfo($ch,CURLINFO_CONTENT_TYPE); if(intval($pageinfohttpcode) 200 or !preg_match(text/html,curl_getinfo($ch,CURLINFO_CONTENT_TYPE) ) ) /print_r(curl_getinfo($ch) ); /exit; return $pageinfo; preg_matc

8、h(/charset=(snr+)/i,curl_getinfo($ch,CURLINFO_CONTENT_TYPE),$matches); /从header 里取charset if( trim($matches1) ) $pageinfocharset = trim($matches1); /echo $pageinfocharset; /exit; curl_close ($ch); /echo $store; /remove javascript $store = preg_replace(/(.*)/smUi,$store); /remove link $store = preg_r

9、eplace(/+/smUi,$store); /remove $store = preg_replace(/smUi,$store); /remove style $store = preg_replace(/(.*)/smUi,$store); /remove 中文空格 $store = preg_replace(/,$store); /remove 标点符号 /$store = preg_replace(/!#$%&*()_-+=|;:?,./,$store); /preg_match(/(.*)/smUi,$store, $matches); /$head = $matches1; /

10、echo $head. n; /charset if($pageinfocharset = ) preg_match(*i,$store,$matches); $pageinfocharset = trim($matches1); /desctiption preg_match(+)/*i,$store,$matches); /print_r($matches); $desc = trim($matches1); $pageinfodescription = str_replace(, ,$desc); preg_match(+)/*i,$store,$matches); /print_r($

11、matches); $keywords = trim($matches1); $pageinfokeywords = str_replace(, ,$keywords); preg_match(/(.*)/smUi,$store, $matches); $pageinfotitle = trim($matches1); preg_match(/(.*)/smUi,$store, $matches); $pageinfobody = addslashes( replaceHtmlAndJs($matches1) ) ; $pageinfoall = addslashes( replaceHtml

12、AndJs($store) ) ; /echo charset = . $pageinfocharset . n; /print_r($pageinfo); /exit; return $pageinfo; /* * 去掉所有的HTML标记和JavaScript标记 */ function replaceHtmlAndJs($document) $document = trim($document); if (strlen($document) = 0) return $document; $search = array ( *?.*?si, / 去掉 javascript /!*?*?si,

13、 / 去掉 HTML 标记 rns+, / 去掉空白字符 &(w+);i / 替换 HTML 实体 ); / 作为 PHP 代码运行 $replace = array ( , , , ); return preg_replace ($search, $replace, $document); /*- 函数名:delfile- 作 用:全自动删除多余文件- 参 数:$dir 是要查找的文件目录 $table 为查找的表 $field 为字段名- 返回值:?- 实 例:思路:最近做了个程序,发现当从数据库中删除数据的时候,而文件没有删除,这样的后果就是文件越来越多,这样是不好的。所以写了个自动判断

14、文件是否与数据库中的对应,如果没有,就删除该文件。超级好用。*/function delfile($dir = ,$table,$field)/获取目录下的文件if (is_dir($dir) if ($dh = opendir($dir) while ($file = readdir($dh) != false) if($file!=.&$file!=.) $exit=$file; closedir($dh); /获取数据库中的文件 图片地址$sql=select $field from $table;$query=mysql_query($sql);while($row=mysql_fet

15、ch_array($query) $pic=$rowpic;/这里的函数很重要啊 array_diff_key 本来是使用这个 好像有点问题$result = array_diff($exit, $pic);if($result=null) echo 你没有文件要删除;foreach($result as $id=$values)echo 系统删除的文件为.$values.;$file=$dir.$values;unlink($file);/*- 函数名:cookie- 作 用:操作cookie的函数- 参 数: * param string $name 名称 * param mixed $v

16、alue 当$value=null时删除名称为$name的cookie * param integer $expire 有效时间 * param string $path 有效路径 * param string $domain 有效域名 * return mixed- 返回值:?- 实 例:cookie(name, xiaokai); 设置cookie cookie(name); 获取cookie cookie(name, null); 删除cookie*/function cookie($name, $value = , $expire = null, $path = null, $doma

17、in = null) if (empty($value) if (is_null($value) /删除cookie if (isset($_COOKIE$name) setcookie($name, $value, time()-3600, $path, $domain); unset($_COOKIE$name); return true; /获取cookie $value = isset($_COOKIE$name) ? $_COOKIE$name : null; return unserialize($value); /设置cookie $expire = is_null($expir

18、e) ? $expire : time() + $expire; $value = serialize($value); return setcookie($name, $value, $expire, $path, $domain);/*- 函数名:xml2array- 作 用:XML转换为数组函数 没用过,也不会用- 参 数:$originalXML ? $attributes=true ?- 返回值:?- 实 例:?*/function xml2array($originalXML, $attributes=true) $xmlArray = array(); $search = $at

19、tributes ? |(.*)|Ums : |(.*)|Ums; / normalize data $xml = preg_replace(|s*n, $originalXML); / one tag per line $xml = preg_replace(|, , $xml); / remove XML declarations $xml = preg_replace(|U, , $xml); /Expand singletons if (! preg_match_all($search, $xml, $xmlMatches) return trim($originalXML); / b

20、ail out - no XML found foreach ($xmlMatches1 as $index = $key) if (! isset($xmlArray$key) $xmlArray$key = array(); $xmlArray$key = xml2array($xmlMatches4$index, $attributes); return $xmlArray;/*- 函数名:deldir- 作 用:删除目录及所包含文件函数- 参 数:$dir 目录名- 返回值:布尔- 实 例:deldir(D:/www);*/function deldir($dir) /打开文件目录 $

21、dh = opendir($dir); /循环读取文件 while ($file = readdir($dh) if($file != . & $file != .) $fullpath = $dir . / . $file; /判断是否为目录 if(!is_dir($fullpath) echo $fullpath.已被删除; /如果不是,删除该文件 if(!unlink($fullpath) else /如果是目录,递归本身删除下级目录 deldir($fullpath); closedir($dh);/关闭目录/*- 函数名:isCrawler- 作 用:php判断爬虫函数- 参 数:-

22、 返回值:布尔- 实 例:echo isCrawler();*/function isCrawler() if(ini_get(browscap) $browser= get_browser(NULL, true); if($browsercrawler) return true; else if (isset($_SERVERHTTP_USER_AGENT) $agent= $_SERVERHTTP_USER_AGENT; $crawlers= array( /Googlebot/, /Yahoo! Slurp;/, /msnbot/, /Mediapartners-Google/, /Sc

23、ooter/, /Yahoo-MMCrawler/, /FAST-WebCrawler/, /Yahoo-MMCrawler/, /Yahoo! Slurp/, /FAST-WebCrawler/, /FAST Enterprise Crawler/, /grub-client-/, /MSIECrawler/, /NPBot/, /NameProtect/i, /ZyBorg/i, /worio bot heritrix/i, /Ask Jeeves/, /libwww-perl/i, /Gigabot/i, /botbot.bot/i, /SeznamBot/i, ); foreach($

24、crawlers as $c) if(preg_match($c, $agent) return true; return false; /*- 函数名:file_search- 作 用:文件搜索函数- 参 数:$directory 目录 $search 搜索的内容 $recursive = TRUE 是否循环- 返回值:布尔- 实 例:echo file_search(E:/www/js,MD5.js,false); 如果存在,输出 E:/www/jsMD5.js 如果不存在,则什么都不输出*/function file_search($directory, $search, $recurs

25、ive = TRUE) $res = FALSE; $dir_handle = opendir($directory); while( FALSE != ($file = readdir($dir_handle) ) if( $file = . | $file = . ) continue; if( is_dir($directory$file) ) if( $recursive ) $res = file_search($directory$file, $search); if( $res != FALSE ) return $res; if( $file = $search ) retur

26、n $directory$file; return FALSE;/*- 函数名:whois_hichina- 作 用:万网 whois(使用的接口为万网提供合法接口) 无值,不明白- 参 数:$domain 域名- 返回值:- 实 例:echo whois_hichina();*/function whois_hichina($domain) preg_match(|(. ?)|is, file_get_contents(/cgi-bin/whois?domain=.$domain.), $whois); $whois0

27、= str_replace(友情提示:按注册局要求,过期域名可能会处于注册商自动续费期阶段,您在此查询所看到的域名到期日仅供参考请您进入会员区查看该域名的实际到期时间,并请及时进行续费,谢谢!, , ($whois0);/过滤掉此段文字 return $whois0;/*- 函数名:whois_xinnet- 作 用:新网 whois (非新网提供,只是根据新网自身网站的url修改实现) 无值,不明白- 参 数:$domain 域名- 返回值:- 实 例:echo whois_xinnet();*/function whois_xinnet($domain) preg

28、_match(|(. ?)|is, file_get_contents( /Modules/agent/serv/pages/domain_whois.jsp?domainNameWhois=.$domain.&noCode=noCode), $whois); return $whois0;/*- 函数名:init_dir- 作 用:返回两个路径间的相对路径- 参 数:$dir_1 路径一 $dir_2 路径二- 返回值:数组- 实 例:init_dir(a/b/c/d/e.php,a/b/m/n/q.php) 返回 ././m/n/ init_dir(a

29、/b/c.php,a/b/d.php) 返回 null init_dir(a/b/c/d.php,a/b/c/m/n/q.php) 返回 m/n/ */function init_dir($dir_1,$dir_2) $dir_1 = explode(/,str_replace(,/,dirname($dir_1); $dir_2 = explode(/,str_replace(,/,dirname($dir_2); foreach ($dir_1 as $key = $value) if (!isset($dir_2$key) break; if ($value = $dir_2$key)

30、unset($dir_1$key,$dir_2$key); else break; $out_dir = str_repeat(./,count($dir_1); if ($out_dir) $out_dir = substr($out_dir,0,strlen($out_dir)-1); array_unshift($dir_2,$out_dir); return implode(/,$dir_2)./; if (!count($dir_2) return ; return implode(/,$dir_2)./;/*- 函数名:get_ip_place- 作 用:获取ip并且转化为地址 -

31、 参 数:- 返回值:数组- 实 例:$ip=get_ip_place(); print_r($ip);- 说 明:代码须联网使用的,使用腾迅的一个api,即/ipaddress*/function get_ip_place() $ip=file_get_contents(/ipaddress); $ip=str_replace(, ,$ip); $ip2=explode(,$ip); $a=substr($ip21,0,-2); $b=explode(,$a); return $b; /*- 函数名:watermark- 作 用:简

32、单的图片加水印函数- 参 数:$imag_url 为要加水印的图片的路径 $str 为要在图片上加上的字符串 $route 加水印后的存放路径- 返回值:- 实 例:*/function watermark($imag_url,$str,$route) $type_array=explode(.,$imag_url); $imag_type=$type_arraycount($type_array)-1; switch($imag_type) case gif: $img=imagecreatefromgif($imag_url); break; case jpeg: $img=imagecreatefromjpeg($imag_url); break; case jpg: $img=imagecreatefromjpeg($imag_url); break; case png: $img=imagecreatefrompng($imag_url

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论