鍍金池/ 問(wèn)答/PHP  Linux  數(shù)據(jù)庫(kù)/ php編程 報(bào)錯(cuò)Uncaught SyntaxError: Unexpected

php編程 報(bào)錯(cuò)Uncaught SyntaxError: Unexpected identifier?

php版本是5.6.36,apache服務(wù)器版本2.4.33,postgresql版本9.5.1
讀的別人的代碼,按理說(shuō)直接部署好了就沒(méi)問(wèn)題。
初步懷疑是本地的php環(huán)境配置有問(wèn)題,因?yàn)橥ㄟ^(guò)pg_query()函數(shù)返回來(lái)的應(yīng)該是類(lèi)似于數(shù)組的變量,但是現(xiàn)在返回的是字符串,不知道為什么。。。
php小白,接觸這個(gè)項(xiàng)目沒(méi)有玩過(guò)php,最近惡補(bǔ),求大佬幫忙看看。涉及到部分gis知識(shí),返回坐標(biāo)。

返回鏈接

http://127.0.0.1:8092/nl/php/getpanoid.php?request=getpanoid&x=495550.6342606045&y=306595.50317500636&distance=300&callback=showSWFSV

php代碼

<?php

    $curPath = dirname(__FILE__).'/';
    
    include($curPath ."ir.php");

    $dbObj = new PgPanoService2($dbHost, $dbName, $dbUser, $dbPassword, $dbPort);
    $dbObj->initDb();
    $dbObj->_requestParams = $_REQUEST;
    if(isset($_REQUEST["y"]) && isset($_REQUEST["x"])){
        $x = floatval($_REQUEST["x"]);
        $y = floatval($_REQUEST["y"]);
        $dist = isset($_REQUEST["distance"])? floatval($_REQUEST["distance"]) :300;
        $dist = $dist < 40 ? 40:$dist;
        $dbObj->getPanoIdByXY($x,$y,$dist); 
    }
    else{
        $dbObj->printOpRes(400, "missing parameter x or y!");
    }
    
?>

        function getPanoIdByXY($x, $y, $buffer=200,$printTag = true){
            $panoId = "null";
            $rlArr = $this->getRoadLinesByXY($x, $y, $buffer);
            if($rlArr && count($rlArr) > 0){
                $rlCount = count($rlArr);
                for($i = 0; $i < $rlCount; $i++){
                    $tmpRl = $rlArr[$i];
                    if($tmpRl){
                        $tmpPds = $tmpRl->getPdsByLimitDate($this->_limitDate);
                        //echo $tmpPds."\r\n";
                        if($tmpPds != ""){
                            $tableName = $this->getTableNameByPanoId($tmpPds, 0);
                            $tmpPanoId = $this->getPanoIdByXyAndTable($tableName, $x, $y, $buffer); 
                            if($tmpPanoId != ""){
                                $panoId = $tmpPanoId;
                                break;
                            }
                        }
                    }
                }
            }
            
        
            if($printTag){
                $tmpResStr = '{"panoid":"'.$panoId.'","requestx":'.$x.',"requesty":'.$y.'}';
                if($this->_requestParams && isset($this->_requestParams["callback"]) && $this->_requestParams["callback"] != ""){
                    $tmpResStr = $panoId;
                }
                $this->exportJson($tmpResStr);
            }
            else
                return $panoId;
        }

        function getPanoIdByXyAndTable($tableName, $x, $y, $buffer=200){
            $resStr = "";
            if($this->_db){
                $queryStr = "SELECT 
                      a.name as name,
                      ST_Distance(ST_GeomFromText('POINT(".$x." ".$y.")', 900913), a.geom)  as dist 
                    FROM 
                      ".$tableName." as a
                    WHERE
                    ST_Contains(ST_Buffer(ST_GeomFromText('POINT(".$x." ".$y.")', 900913), ".$buffer."),a.geom) 
                    order by dist ASC limit 1";
                 // var_dump($queryStr) ;exit;
                $result = pg_query($this->_db,$queryStr);
                var_dump($result);
                if($result === FALSE || $result === TRUE || pg_num_rows($result) == 0){
                    return null;
                }
                else{
                    while($arr = pg_fetch_array($result)){
                        if($arr && $arr["name"] != ""){
                            $resStr = $arr["name"];
                            break;
                        }
                    }
                }
                
            }
            return $resStr;
        }
回答
編輯回答
悶騷型

應(yīng)該是你的解析json數(shù)據(jù)出錯(cuò)導(dǎo)致的

2018年8月19日 11:18
編輯回答
疚幼

這是JS的報(bào)錯(cuò)啊,語(yǔ)法錯(cuò)誤。

2018年9月2日 14:50