获取逗号WordPress分隔的值

时间:2015-07-23 14:52:20

标签: php wordpress

如何用逗号分隔值。我使用了explode。这就是我尝试过的。

$get_item_desc = get_post_meta ($post->ID, 'item_description', true); 
$arr = explode(",", $get_item_desc);
$item_string = '';
foreach($arr as $val){
        echo $get_items = $item_string.trim($val).' ';
}

示例输入:

第1项,第2项,第3项

示例输出:

DESC-1:第1项 DESC-2:第2项 DESC-3:第3项

1 个答案:

答案 0 :(得分:1)

根据您的样本输入/输出,您可以使用:

$get_item_desc = get_post_meta($post->ID, 'item_description', true); 
$arr = explode(',', $get_item_desc);
$i = 1;

foreach($arr as $val){
    echo 'DESC-' . $i . ': ' . trim($val) . ' ';
    $i++;
}