当前位置:Gxlcms > PHP教程 > PHP---常用代码

PHP---常用代码

时间:2021-07-01 10:21:17 帮助过:6人阅读

1、删除字符串的第一个字符:

$string='';
foreach($arrayas$key => $value){
    $string .= ",$value";
}
$string = substr($string,1);

2、定义页面编码格式:

<meta http-equiv=content-type content="text/html; charset=UTF-8">header("Content-type:text/html;charset=utf-8");

3、设置运行时间限制和浏览器关闭限制:

set_time_limit(0);
ignore_user_abort(true);

4、截取两个字符串中的部份

functiongetStringMiddlePart($str,$str_begain,$str_end){//请确保$str_begain在$str中的唯一性$temp = explode($str_begain,$str);
    if(!isset($temp[1])) returnfalse;
    $temp = explode($str_end,$temp[1]);
    return$temp[0];
}

以上就介绍了PHP---常用代码,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

人气教程排行