将一个字符串分成两部分

时间:2014-05-28 15:04:41

标签: php string substring

如何分割下面的字符串

MAX_checkSite_Variable('type|101', '=~') or MAX_checkSite_Variable('county|0880', '=~')

分成两个单独的字符串

MAX_checkSite_Variable('type|101', '=~')
MAX_checkSite_Variable('county|0880', '=~')

2 个答案:

答案 0 :(得分:1)

使用explode()

list($part1, $part2) = explode(" or ",$yourString);

您将在$part1$part2中获得结果。

答案 1 :(得分:1)

<?php

$str = "MAX_checkSite_Variable('type|101', '=~') or MAX_checkSite_Variable('county|0880', '=~')";

print_r(explode(' or ', $str));

//Output: Array ( [0] => MAX_checkSite_Variable('type|101', '=~') [1] => MAX_checkSite_Variable('county|0880', '=~') )

?>

DEMO