Pagina 1 di 3 1 2 3 ultimoultimo
Visualizzazione dei risultati da 1 a 10 su 24

Discussione: Feed Atom

  1. #1

    Feed Atom

    Come posso estrarre l'ultimo post di un feed atom (blogger) e visualizzarlo con PHP?

    Grazie

  2. #2
    la prima cosa che mi viene in mente è che potresti leggere il feed del blog:

    Codice PHP:
    $feedUrl 'www.tuoblog.com/feed'
    $rawFeed file_get_contents($feedUrl);    
    $xml = new SimpleXmlElement($rawFeed); 
    e poi potresti recuperarti l'ultimo elemento inserito:


    Codice PHP:
    $xml->channel->item[0

  3. #3
    Mi da questi errori
    codice:
    Warning: file_get_contents() [function.file-get-contents]: URL file-access is disabled in the server configuration
    codice:
    Warning: file_get_contents(www.sito.it/feed) [function.file-get-contents]: failed to open stream: no suitable wrapper could be found
    codice:
    Fatal error: Uncaught exception 'Exception' with message 'String could not be parsed as XML'
    codice:
    Stack trace: #0 : SimpleXMLElement->__construct('') #1 {main} thrown

  4. #4
    Moderatore di PHP L'avatar di Alhazred
    Registrato dal
    Oct 2003
    Messaggi
    12,505
    Il problema leggendo il primo warning è chiaro, non puoi usare file_get_content, il server non ti permette l'accesso ai file.

  5. #5
    Come è possibile risolverlo?

  6. #6
    prova così:

    Codice PHP:
    $url "feed.xml";
    $xml simplexml_load_file($url); 

  7. #7
    Mi restituisce questo errore:
    codice:
    Warning: simplexml_load_file() [function.simplexml-load-file]: I/O warning : failed to load external entity ""

  8. #8
    Moderatore di PHP L'avatar di Alhazred
    Registrato dal
    Oct 2003
    Messaggi
    12,505
    Il motivo penso sia lo stesso di file_get_contents, se non hai accesso al file nessuna funzione che prova a leggerlo andrà a buon fine.

  9. #9
    Quindi non posso leggere da un feed di blogger?

  10. #10

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.