我有一个像这样分开的列表:
<!--start-->
item 1
<!--end-->
<!--start-->
item 2
<!--end-->
我需要创建一个数组,第一个变量是第 1 项,第二个是第 2 项,依此类推...
我怎么做?
$string = .... <your data>
$array = explode('<!--start-->\n', $string);
$final = array();
foreach ($array as $line) {
$final[] = str_replace('<!--end-->\n', '', $line);
}
echo "<pre>";
print_r($final);
这会给你你正在寻找的东西。
看一下 preg_split() 函数。
假设列表在$input
:
// remove the start tag and add a newline at the end
$input = str_replace("<!--start-->\n", "", $input . "\n");
// break the list into an array (the last item will be an empty string)
$output = explode("\n<!--end-->\n", $input);
// remove the empty item at the end
unset($output[count($output) - 1]);
我的提议:
$str = "<!--start-->
item 1
<!--end-->
<!--start-->
item 2
<!--end-->";
$in = explode(PHP_EOL, $str);
function filter($ell) {
if (strpos($ell, '<!--') !== 0){
return true;
}
return false;
}
$arr = array_filter($in, 'filter');
var_dump($arr);