Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Plugin "Newsfeed"
#12
I'm currently learning how to use SimpleXML and would like a hint on how to save modifications back to a XML file? Let's take this example with (still) hard-coded element content:

Code:
# Load the feed file
    $xml = simplexml_load_file($thp_newsfeed_atom_template_destination);
        
    # Add an entry element as  child
    $entry = $xml->addChild('entry');
        
    # Add child elements to entry
    $entry->addChild('title', 'Page XYZ has been created');
    $entry->addChild('link', 'http://');
    $entry->addChild('id', 'Generate UUID or other id');
    $entry->addChild('updated', 'Insert update time');
    $entry->addChild('summary', 'Repeat title?');

I read up on asXML(), but I don't get it. In example 1 given at php.net, the output includes <?xml version="1.0"?> which is not what I want. Example 2 doesn't have it, but uses XPath. Is example 2 possibly what I want?
Reply


Messages In This Thread
Plugin "Newsfeed" - by polyfragmented - 2011-03-29, 06:52:52
Plugin "Newsfeed" - by polyfragmented - 2011-03-29, 07:14:23
Plugin "Newsfeed" - by mvlcek - 2011-03-29, 16:05:36
Plugin "Newsfeed" - by polyfragmented - 2011-03-29, 17:37:44
Plugin "Newsfeed" - by polyfragmented - 2011-03-30, 06:22:33
Plugin "Newsfeed" - by mvlcek - 2011-03-30, 06:37:00
Plugin "Newsfeed" - by polyfragmented - 2011-03-30, 06:43:34
Plugin "Newsfeed" - by polyfragmented - 2011-04-05, 03:56:48
Plugin "Newsfeed" - by ccagle8 - 2011-04-05, 04:13:08
Plugin "Newsfeed" - by polyfragmented - 2011-04-05, 06:03:25
Plugin "Newsfeed" - by polyfragmented - 2011-04-06, 04:24:33
Plugin "Newsfeed" - by polyfragmented - 2011-04-06, 04:45:48
Plugin "Newsfeed" - by polyfragmented - 2011-04-06, 04:59:27
Plugin "Newsfeed" - by mvlcek - 2011-04-06, 05:53:24
Plugin "Newsfeed" - by polyfragmented - 2011-04-07, 21:15:06
Plugin "Newsfeed" - by RobA - 2011-04-08, 00:10:55
Plugin "Newsfeed" - by mvlcek - 2011-04-08, 00:23:20
Plugin "Newsfeed" - by polyfragmented - 2011-04-08, 04:54:46
Plugin "Newsfeed" - by polyfragmented - 2011-04-09, 08:31:23
Plugin "Newsfeed" - by polyfragmented - 2011-04-09, 21:54:55
Plugin "Newsfeed" - by RobA - 2011-04-10, 03:00:54
Plugin "Newsfeed" - by polyfragmented - 2011-04-10, 20:55:52
Plugin "Newsfeed" - by polyfragmented - 2011-04-21, 22:57:44



Users browsing this thread: 1 Guest(s)