當前位置: 首頁>>代碼示例>>PHP>>正文


PHP SimpleXMLExtended::getDocNamespaces方法代碼示例

本文整理匯總了PHP中SimpleXMLExtended::getDocNamespaces方法的典型用法代碼示例。如果您正苦於以下問題:PHP SimpleXMLExtended::getDocNamespaces方法的具體用法?PHP SimpleXMLExtended::getDocNamespaces怎麽用?PHP SimpleXMLExtended::getDocNamespaces使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在SimpleXMLExtended的用法示例。


在下文中一共展示了SimpleXMLExtended::getDocNamespaces方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: SimpleXMLExtended

    }
}
// -----------------------------------------------------
// start XML generation
$xml = <<<XML
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0"
    xmlns:excerpt="http://wordpress.org/export/1.2/excerpt/"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:wfw="http://wellformedweb.org/CommentAPI/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:wp="http://wordpress.org/export/1.2/"
></rss>
XML;
$rss = new SimpleXMLExtended($xml);
$namespaces = $rss->getDocNamespaces(true);
// load the Newblur exported JSON file
$file = file_get_contents("starred_stories.json");
$json = json_decode($file, true);
// Wordpress will choke if our post names aren't unique, so we track
// them separately
$post_names = array();
$channel = $rss->addChild("channel");
$channel->addChild("generator", basename(__FILE__));
$channel->addChild("wxr_version", "1.2", $namespaces["wp"]);
// base_site_url is MUST. WordPress Importer warns if this does not exist
$channel->addChild("base_site_url", "http://asiajin.com/blog", $namespaces["wp"]);
foreach ($json["stories"] as $item) {
    $rssItem = $channel->addChild("item");
    $content = null;
    if (array_key_exists('story_content', $item)) {
開發者ID:akky,項目名稱:newsblur2wordpress,代碼行數:31,代碼來源:newsblur2wordpress.php


注:本文中的SimpleXMLExtended::getDocNamespaces方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。