false输出sql数据库substr_count

时间:2014-12-19 11:46:48

标签: php mysql php4

我的错误是什么?

$abfrage = "SELECT Antwort FROM EINTRAGEN";
$ergebnis = mysql_query($abfrage);
while($row = mysql_fetch_object($ergebnis))
{
$myString = "$row->Antwort";
$substr = "Ja";
$count = substr_count($myString, $substr);
echo $count;
}

我的数据库“Antwort”的内容是:Nein,Ja,Nein

我的问题是,$ count“0 1 0”的内容是 - 为什么不只是“1”?

1 个答案:

答案 0 :(得分:0)

因为substr_count总是返回一个整数

echo $count ? $count : '';