PHP for-each 循环不起作用?

PHP for-each loop not working?

我的 for-each 不工作。不循环 javascript 代码。有人可以提供一些代码来帮助吗?

  $guy= queryMysql("SELECT lat, long FROM members WHERE user='$guy'");
  while($data2 = mysql_fetch_array($guy)){

   $latitude1= $data2['lat'];
   $longitude1= $data2['long'];
   
   echo "<script>function createMarker() {
   $.goMap.createMarker(
   { 
    latitude: $latitude1, 
    longitude: $longitude1, 
     animation: google.maps.Animation.DROP,
    title: 'Current users location', 
    html: { 
     content: '<p>This is your location $friend</p>', 
     popup: false 
    } 
   }
   );

   }</script>";

您需要在 PHP 循环中构建一个数组,并将该数据提供给 javascript。像这样的东西可以工作:

PHP

<?php
$strOut = '';
if (sizeof($following)) {
    foreach ($following as $friend) {

        $friendsloc = queryMysql("SELECT homelocation, currentlocation FROM members WHERE user='$friend'");
        while ($data2 = mysql_fetch_array($friendsloc)) {

            $latitude1  = $data2['homelocation'];
            $longitude1 = $data2['currentlocation'];

            $strOut .= '{"lat": '.$latitude1.', "lon": '.$longitude1.'},';


        }
    }



}
$strOut = 'var locations = [' . rtrim($strOut,",") . ']';
?>

JavaScript:

$(document).ready(function() {

    // get a Google map centred roughly on the John Dalton Building: 
    $('#map').goMap({
        latitude: 53.472342399999995,
        longitude: -2.2398096,
        zoom: 12,
        maptype: 'ROADMAP',
        scaleControl: true
    });



    <?php echo $strOut; ?>
    // now add a marker: 
    for(var i = 0; i < locations.length; i++) {
      $.goMap.createMarker({
          latitude: locations[i].lat,
          longitude: locations[i].lon,
          animation: google.maps.Animation.DROP,
          title: 'Current users location',
          html: {
              content: '<p>This is your location </p>',
              popup: false
          }
      });
    }




});

您创建了许多 createMarker() 函数,最后一个函数覆盖了之前的所有函数。所以当你稍后调用它时,你会得到一个带有最后一个参数的调用。不要创建函数,将坐标推送到某个存储并在之后循环它。

<?php

    $friendsloc = mysql_query("SELECT lat, long FROM members WHERE user='$friend'");
            while($data2 = mysql_fetch_array($friendsloc)){

             $latitude1= $data2['lat'];
             $longitude1= $data2['long'];

                echo "<script>function createMarker() {
                $.goMap.createMarker(
                { 
                    latitude: $latitude1, 
                    longitude: $longitude1, 
                     animation: google.maps.Animation.DROP,
                    title: 'Current users location', 
                    html: { 
                        content: '<p>This is your location $friend</p>', 
                        popup: false 
                    } 
                }
                );

                }</script>";
                    }
                        ?>