Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.php > #17552
| From | alex <1j9448a02@lnx159sneakemail.com.invalid> |
|---|---|
| Newsgroups | comp.lang.php |
| Subject | view rss item content |
| Date | 2017-07-25 09:19 +0200 |
| Organization | Aioe.org NNTP Server |
| Message-ID | <ol6re6$14jp$1@gioia.aioe.org> (permalink) |
<?php // test.php
$extended_format=true;// turn on extended view
// first item getting
$_ =
simplexml_load_file('http://feeds.bbci.co.uk/news/rss.xml?edition=uk')->
channel->
item[0]
;
echo
"<h3>" . $_->title .' - ' . $_->link . "</h3>\n",
$extended_format ?
$_->children(
"content",
true
) :
$_->description
;
?>
$ php test.php
<h3>Charlie Gard: 'Last precious moments' for parents with their son -
http://www.bbc.co.uk/news/uk-england-london-40712913</h3>
Because "content" is missing?
Back to comp.lang.php | Previous | Next — Next in thread | Find similar | Unroll thread
view rss item content alex <1j9448a02@lnx159sneakemail.com.invalid> - 2017-07-25 09:19 +0200
Re: view rss item content "J.O. Aho" <user@example.net> - 2017-07-25 18:31 +0200
Re: view rss item content alex <1j9448a02@lnx159sneakemail.com.invalid> - 2017-07-26 13:11 +0200
csiph-web