0

我有一个像这样分开的列表:

<!--start-->
item 1
<!--end-->
<!--start-->
item 2
<!--end-->

我需要创建一个数组,第一个变量是第 1 项,第二个是第 2 项,依此类推...

我怎么做?

4

4 回答 4

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);

这会给你你正在寻找的东西。

于 2012-07-26T22:53:04.377 回答
0

看一下 preg_split() 函数。

于 2012-07-26T22:53:38.457 回答
0

假设列表在$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]);
于 2012-07-26T22:55:34.923 回答
0

我的提议:

$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);
于 2012-07-26T22:56:48.493 回答