解决方案 »

  1.   

    1.simplexml_load_file 改為 simplexml_load_string
    2.$xml = new DOMDocument(); 這句沒用,刪掉
    3.要顯示中文,所以要加meta charset="utf-8"
    $xmlString = file_get_contents('http://www.testgod8.com/1.xml');
    $xml = simplexml_load_string($xmlString);
    $er = $xml->er;
    $login = $xml->login;
    $nick = $xml->nick;
    $uin = $xml->uin;
    echo '<meta http-equiv="content-type" content="text/html;charset=utf-8">';
    echo "$er - $login - $nick - $uin\n";
      

  2.   

    header('Content-type: text/html;charset=utf-8');$xmlString = 'http://www.testgod8.com/1.xml';
    $xml = simplexml_load_file($xmlString );
    $er = $xml->er;
    $login = $xml->login;
    $nick = $xml->nick;
    $uin = $xml->uin;
    echo "$er - $login - $nick - $uin\n";
    李明 - 普通会员 - 13901092911 - [email protected]