访问函数内的查询变量

时间:2015-09-21 16:20:38

标签: php function

好的 - 我能够将分配给变量$ myfile的字符串传递给函数。如果它可能更好,请提供反馈 - 学习PHP。

<?php
$myfile = $row_rs_recordview['headstone'];
echo "$myfile"; // verify the file name
function readGPSinfoEXIF($myfile)
{    
 global $myfile;
 $exif= exif_read_data("headstone/".$myfile, 0, true); //
 if(!$exif || $exif['GPS']['GPSLatitude'] == '') //Determines if the
                          //geolocation data exists in the EXIF data
 {
      return false; //no GPS Data found
      echo "No GPS DATA in EXIF METADATA";
 }
?>

见解赞赏!

谢谢

1 个答案:

答案 0 :(得分:1)

你无法直接访问函数内的全局变量。

//add global before variable declaration like this
function fun(){  
   global $row_rsUpdate['headstone'];
}