摘要: 手机号码归属地查询php函数 function tel_location($ip) { $u = “https://www.youdao.com/smartresult-xml/search.s?type=mobile&q=$ip”; $r = HttpRequest($u); preg_match 阅读全文
posted @ 2020-02-03 17:16 圆柱模板 阅读(366) 评论(0) 推荐(0)
摘要: php进行过滤用户名、邮箱、手机账号中间字符串以*隐藏 在自定义函数文件中加入(网站根目录api/extend.func.php) //用户名、邮箱、手机账号中间字符串以*隐藏 function xhdestar($str) { if (strpos($str, '@')) { $email_arr 阅读全文
posted @ 2020-02-03 17:11 圆柱模板 阅读(447) 评论(0) 推荐(0)
摘要: php去除html代码中img图片标签宽高函数,应对采集数据出现图片大小限制问题。 function content_strip($content){ $content = preg_replace('/<img[^>]*src=[\'"]?([^>\'"\s]*)[\'"]?[^>]*>/ie', 阅读全文
posted @ 2020-02-03 17:07 圆柱模板 阅读(667) 评论(0) 推荐(0)
摘要: 因为运营需要,有些模块是批量生成的内容,图片地址都是一样的,如果不小心删除一篇内容,会导致批量生成的其他内容图片都丢失,这样很苦恼,今天就给大家带来这个,去除:删除信息删除相关图片功能 对应模块class.php 如:article.class.php if($this->itemid) { $po 阅读全文
posted @ 2020-02-03 15:51 圆柱模板 阅读(227) 评论(0) 推荐(0)