//mobile false pc true no pc function is_mobile(){ $agent = strtolower($_SERVER['HTTP_USER_AGENT']); $is_pc = (strpos($agent, 'windows nt')) ? true .....
分类:
Web程序 时间:
2014-10-29 21:17:24
阅读次数:
207
$agent = $_SERVER['HTTP_USER_AGENT'];if(strpos($agent,"comFront") strpos($agent,"iPhone") strpos($agent,"MIDP-2.0") strpos($agent,"Opera Mini") s...
分类:
移动开发 时间:
2014-10-27 19:02:07
阅读次数:
217
开启缓存的配置文件 /Application/Common/conf/cache.php源码如下:
'配置值'
'LAYOUT_ON' => true,
'HTML_CACHE_ON' => strpos($_SERVER['HTTP_HOST'], '.') !== false, // 开...
分类:
Web程序 时间:
2014-10-22 12:56:27
阅读次数:
537
//判断是否是手机function is_mobile(){ $agent = strtolower($_SERVER['HTTP_USER_AGENT']); $is_pc = (strpos($agent, 'windows nt')) ? true : false;...
分类:
移动开发 时间:
2014-10-21 23:07:20
阅读次数:
320
0?$matches[0]:''; function CheckSubstrs($substrs,$text){ foreach($substrs as $substr) if(false!==strpos($text,$substr...
分类:
移动开发 时间:
2014-10-18 09:41:37
阅读次数:
205
1.php字符串函数的回顾 //php查找函数,用来定位你查找的字符串出现的位置 strpos(string position ) 字符串定位函数 strpos($strA,$strB) 用来查询字符串$strB在字符串$str中出现的位置,这个函数是严格的区分大小写的 。 stripos() 与上...
分类:
Web程序 时间:
2014-10-17 11:43:27
阅读次数:
174
strpos() 函数返回字符串在另一个字符串中第一次出现的位置。 大小写敏感 如果没有找到该字符串,则返回 false。 strpos(string,find,start) string 必需:规定被搜索的字符串。 find 必需:规定要查找的字符。 start 可选:规定开...
分类:
其他好文 时间:
2014-09-25 20:36:57
阅读次数:
153
function getBrowser(){
$agent=$_SERVER["HTTP_USER_AGENT"];
if(strpos($agent,‘MSIE‘)!==false || strpos($agent,‘rv:11.0‘)) //ie11判断
return "ie";
else if(strpos($agent,‘Firefox‘)!==...
分类:
Web程序 时间:
2014-09-16 16:15:30
阅读次数:
207
");//返回第二个参数字符串在第一个字符串里出现的次数$int=substr_count("abcdeabcdeablkabd","ab");//返回第二个字符串在第一个字符串第一次出现的位置,第一个字符位置算0$int=strpos("asagaab","ab");//返回第二个字符串在第一个字...
分类:
Web程序 时间:
2014-09-14 17:59:37
阅读次数:
214
来自1:http://blog.sina.com.cn/s/blog_8edc37a801016yha.html--------------------------------------------------------------------我觉得最简单的就是:(用这种最好,StrPos效率最...
分类:
Web程序 时间:
2014-09-13 21:21:05
阅读次数:
277