1

PHPスクリプトでこの奇妙な問題が発生しています。

私は持っている

Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING 
in simpleTest.php on line 82  

コードが機能しない理由がわかりません。

<?php
    foreach ( $response->getPods() as $pod ) {
?>
      <tr>
        <td>
          <h3><?php echo $pod->attributes['title']; ?></h3>   //line 82..this gives me error...


   <?php
           foreach ( $pod->getSubpods() as $subpod ) {
     ?>
  <img src="<?php echo $subpod->image->attributes['src']; ?>">  //this would gives me error too...
              <hr>
    <?php
            }
    ?>

助けてくれてありがとう!

4

2 に答える 2

2

外側の foreach ループの右中括弧がありません。

于 2012-10-14T19:04:11.597 に答える
1
<?php foreach ( $response->getPods() as $pod ) { 
      echo "<tr><td><h3>".$pod->attributes['title']."</h3>";
      foreach ( $pod->getSubpods() as $subpod ) {
          echo "<img src='".$subpod->image->attributes['src']."'><hr>";
      }
}?>

Coderabbi の右、行方不明のカーリーがありました。

于 2012-10-14T19:08:10.433 に答える