php字符串操作

时间:2009-12-03 07:59:05

标签: php string

我在html中有以下代码

<? foreach($tst as $test) : ?>
<?=$test->id?>,
<? endforeach ?>

这将导致 作为test1,test2,test3,

如何避免使用简单方法中的最后一个逗号。我不能在html中使用复杂的代码,如

<? $i = 0 ;?>
<? foreach($tst as $test) : ?>
<?=$test->id?>,
<? endforeach ?>
<? $i++ ;?>
<? if($i != count($tst)) :?>
,
<?endif;?>
<? endforeach;?>

请帮助:)

1 个答案:

答案 0 :(得分:5)

在临时数组上使用implode

<?php

$a= array();

foreach($tst as $test) {
 $a[]= $test->id;
}

echo(implode(', ', $a));

?>