Possible Duplicate:
Removing last comma in PHP?
Remove the last Comma from a string (PHP / Wordpress)
我有某些原因没有奏效的法典。 我试图做的是,从结果中去掉最后的ma子,但却赢得了 t。 这里是法典
<?php do {
$activity_user_first_name = $row_product_activity[ user_first_name ];
$activity_user_last_name = $row_product_activity[ user_last_name ];
$name = <a href=""> .$activity_user_first_name. .$activity_user_last_name. </a>, ;
echo rtrim($name, ",");
} while($row_product_activity = mysql_fetch_assoc($product_activity)) ?> like this
因此,我希望得到的结果就是这样。
Steve Jobs, Bill Gates, Sergey Brin, Larry Page like this
相反,我这样做了。
Steve Jobs, Bill Gates, Sergey Brin, Larry Page, like this
因此,我想删除Larry Page之后的 com号或任何其他最终名称。 我尝试了许多其他选择,但正如我所希望的那样,没有这样做。 任何建议都会受到赞赏。