欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP---常用代码

程序员文章站 2022-05-02 09:48:24
...
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教程有兴趣的朋友有所帮助。