时间:2021-07-01 10:21:17 帮助过:20人阅读
// ### 切分字符串 ####
function jb51netcut($start,$end,$file){
$content=explode($start,$file);
$content=explode($end,$content[1]);
return $content[0];
}
?>
explode定义和用法
explode() 函数把字符串分割为数组。
语法
explode(separator,string,limit)
参数 | 描述 |
---|---|
separator | 必需。规定在哪里分割字符串。 |
string | 必需。要分割的字符串。 |
limit | 可选。规定所返回的数组元素的最大数目。 |
输出:
$str = "Hello world. It's a beautiful day.";
print_r (explode(" ",$str));
?>
http://www.bkjia.com/PHPjc/326098.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/326098.htmlTechArticle 代码如下:? // ### 切分字符串 #### function jb51netcut($start,$end,$file){ $content=explode($start,$file); $content=explode($end,$content[1]); return $content...