如何从html调用Php函数


How to call a Php Function from html

我使用简单的PHP DOM库来使用PHPscraper。我编写了一个函数,抓取我需要的数据。如何从html页面调用该函数?我需要在我的html页面中显示这些数据。我正在使用AngularJS框架,我正在使用视图。

这是我的密码。

function Islamabad_data(){
    // Array Declaration
    var isb_hi_temp = new Array();
    $fhtml1 = file_get_contents('http://www.accuweather.com/en/pk/islamabad/258278/daily-weather-forecast/258278');
    $fhtml1 = str_get_html($fhtml1);
    $day6 = file_get_contents('http://www.accuweather.com/en/pk/islamabad/258278/daily-weather-forecast/258278?day=6');
    $day6 = str_get_html($day6);
    echo "Islamabad Data<br>";
    echo" <br>High temperature <br>";
    foreach($fhtml1->find('#feed-tabs .temp') as $element){
        echo $element->plaintext;
        ?>
            isb_hi_temp.push('<?php echo $element; ?>');
        <?php
    }
    $i=0;
    foreach($day6->find('#feed-tabs .temp')as $element)
    {
        if($i<2)
        {
            echo $element->plaintext;
            ?>
                isb_hi_temp.push('<?php echo $element; ?>');
            <?php
            $i++;                 
        }
    } 
    echo isb_data;
}

我知道这不是一个答案,但我已经简化了您的代码。看起来您想要生成一个可以由Angular获取的JavaScript数组。第一步是正确生成所需的JSON。你的代码中有很多错误——你不能像以前那样混合使用JavaScript和PHP。通常在PHP中,我们会使用PHP生成一个数组对象,然后调用json_encode来创建客户端将访问的json对象(在这种情况下,您使用Angular作为客户端)。

function Islamabad_data(){
    $fhtml1 = file_get_contents('http://www.accuweather.com/en/pk/islamabad/258278/daily-weather-forecast/258278');
    $fhtml1 = str_get_html($fhtml1);
    $day6 = file_get_contents('http://www.accuweather.com/en/pk/islamabad/258278/daily-weather-forecast/258278?day=6');
    $day6 = str_get_html($day6);
    //echo "Islamabad Data<br>";
    //echo" <br>High temperature <br>";
    $hiTemp = array();
    foreach($fhtml1->find('#feed-tabs .temp') as $element){
        $hiTemp[] = $element;
    }
    $i=0;
    foreach($day6->find('#feed-tabs .temp')as $element) {
        if ($i<2) {
            $hiTemp[] = $element;
        }
        $i++;
    } 
    echo json_encode( $hiTemp );
}

步骤2。使用Angular调用您的PHP服务。这里有一个过于简单的例子来帮助你:

function Hello($scope, $http) {
    $http.get('/some/where/somefile.php').
        success(function(data) {
            $scope.islamabadData = data;
        });
}

此外,您应该真正使用Accuweather的API,而不是进行数据抓取。

http://apidev.accuweather.com/developers/

它可能会对您有所帮助:

function loadCitiesData($scope, $http) {
    $http.get('/some/where/somefile.php?Islamabad=1').
        success(function(data) {
            $scope.islamabadData = data;
        });
    $http.get('/some/where/somefile.php?Lahore=1').
        success(function(data) {
            $scope.LahoreData = data;
        });
}

和你的somefile.php文件:

<?php
if( !empty($_GET['Islamabad']) ){
    $fhtml1 = file_get_contents('http://www.accuweather.com/en/pk/islamabad/258278/daily-weather-forecast/258278');
    $fhtml1 = str_get_html($fhtml1);
    $day6 = file_get_contents('http://www.accuweather.com/en/pk/islamabad/258278/daily-weather-forecast/258278?day=6');
    $day6 = str_get_html($day6);
    //echo "Islamabad Data<br>";
    //echo" <br>High temperature <br>";
    $hiTemp = array();
    foreach($fhtml1->find('#feed-tabs .temp') as $element){
        $hiTemp[] = $element;
    }
    $i=0;
    foreach($day6->find('#feed-tabs .temp')as $element) {
        if ($i<2) {
            $hiTemp[] = $element;
        }
        $i++;
    } 
    echo json_encode( $hiTemp );
}elseif( !empty($_GET['Lahore']) ){
    // your code, $yourArray = array('something');
    // echo json_encode( $yourArray );
}elseif( !empty($_GET['Multan']) ){
    // your code, $yourArray = array('something');
    // echo json_encode( $yourArray );
}
?>