可能重复:
如何使用 IF 语句选择以“<img”开头的行
当文本以 img 开头时,我正在尝试将“/images”添加到 text_image 行的开头。它给了我一个错误。
while($row = mysql_fetch_array( $result3 )) {
echo "<div class='entry'>";
$images = (substr($row['text_image']), 0, 3) == 'img') ? "/images" : "";
echo $images . $row['text_image'];
echo "</div>";
}