PHP 取2个字符中间的,请问咋写?
我的list文件是这样的(*[email protected]/)
end
(*[email protected]/)
end
(*[email protected]/)
end
(*[email protected]/)
end
(*[email protected]/)
end
end if
我想只把每段的邮件地址取出来
请问我该咋写代码? 这个函数应该对你有用:
explode
切开字串。
语法: array explode(string separator, string string);
传回值: 阵列
函式种类: 资料处理
内容说明
本函式将字串依指定的字串或字元 separator 切开。将切开后的字串传回到阵列变数中。
使用范例
<?
$pizza = "第一片 第二片 第三片 第四片 第五片 第六片";
$pieces = explode(" ", $pizza);
?>
页:
[1]