我无法替换php中的评论

时间:2014-11-18 12:39:10

标签: php

  

$ string =" comment-454&#34 ;;

我想只显示454?不是评论 -

我正在保存db comment-454,现在我想裁剪评论 - 我怎么能

有人可以给我一些东西,因为我是php的新手.. 提前谢谢..

2 个答案:

答案 0 :(得分:1)

$ string = str_replace("评论 - ","","评论-454");

应该取代你想要的东西。

您提到comment-454来自您的数据库。生病了,假设它在$result

现在你可以做到:

$string = str_replace("comment-", "", $result);

echo $string;

答案 1 :(得分:0)

使用explote()http://php.net/manual/de/function.explode.php

$ teile = explode(“ - ”,$ string); echo $ teile [1]; // 454