Web barındırma SimpleXML işi yapmak için yine de var mı

0 Cevap php
    <?php
$twitter_url = 'http://twitter.com/statuses/user_timeline/ishrikrishna.xml?count=1';

$buffer = file_get_contents($twitter_url);

$xml = new SimpleXMLElement($buffer);

$status = $xml -> status;

$tweet =  $status -> text;

echo $tweet;

?>

Ben tweets almak için bu kodu kullanılan ve localhost başarıyla çalışıyor ama benim host, ben iki webhosting hizmetleri bu senaryoyu denemedim.

Ben fark ettik sorun file_get_contents gibi işlevleri (), simplexml_load_file () başka bir sunucuda depolanan xml dosyasını (örn. rss dosyaları) veri almak için başarısız olduğunu.

0 Cevap