dpj775835868 2013-09-19 20:15
浏览 18
已采纳

PHP If语句 - >

Here is my problem

CODE:

$response = json_decode($data);

$arr = (array) $response;

if(is_array($arr['reviews'])){

foreach($arr['reviews'] as $review){

if ($review->rating == "0") {echo "<div class="0stars"></div>
";}

} 

It throws me an error when it gets to the if portions

Parse error: syntax error, unexpected '0' (T_LNUMBER), expecting ',' or ';' in /home....

I've tried:

$reviewstar = $review->rating;
if ($reviewstar == "0") {echo "<div class="0stars"></div>
";}

and many other options....

How can I do that? do I need to array again?

Thanks!

  • 写回答

2条回答 默认 最新

  • dongzhuner6981 2013-09-19 20:40
    关注

    The quotes in this line are broken:

    if ($review->rating == "0") {echo "<div class="0stars"></div>
    ";}
    

    Change it to:

    if ($review->rating == "0") {echo "<div class=\"0stars\"></div>
    ";}
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?