首页 > 解决方案 > 无法从 php 中的 xml 加载数据

问题描述

XML 在我的本地主机中按预期工作,但是当我尝试从在线服务器加载数据时,它无法加载。

XML ->xml feed

代码

<?php
$xmldata = simplexml_load_file("xml feed") or die("Failed to load your file");
foreach($xmldata->children() as $empl) {         
    $offering_type = $empl->offering_type;  
    $reference_number = $empl->reference_number;   
    $price = $empl->price; 
    $price = (int)$price;

    $city = $empl->city; 
<------- html code here to display the xml data ---->

?>

它未能加载 xml 提要并返回“未能加载您的文件”

谢谢

标签: phpxml

解决方案


问题出在托管服务器上。启用 File_Open=on 后。我可以访问数据。


推荐阅读