-
-
#-------------------- -- --------------------
- #
- # XML 函式庫,作者:Keith Devens,版本1.2b
- # http://keithdevens.com/software/phpxml
- #
- # 該程式碼是開源的,並根據類似於藝術授權的條款發布。
- # 閱讀http://keithdevens.com/software/license 上的許可證
- #
- #---------- ----------------------------------------------
- # XML_unserialize:將原始XML 作為參數(字串)
- # 並傳回等效的PHP 資料結構
- #-------------------- --- --------------------
- 函數& XML_unserialize(&$xml){
- $xml_parser = &new XML();
- $data = & $xml_parser->parse($xml);
- $xml_parser->destruct();
- 回傳$資料;
- }
- --------------- --------######
- # XML_serialize:將任何PHP 資料結構序列化為XML
- # 採用一個參數:要序列化的資料。必須是一個數組。
- ------------------------#
- 函數& XML_serialize(&$data, $level = 0, $prior_key = NULL){
- if($level == 0){ ob_start(); echo '',"n"; }
- while(list($key, $value) = every ($data))
- if(!strpos($key, ' attr')) #if 它不是一個屬性
- #我們不' t 單獨處理屬性,因此對於具有屬性的空元素
- # ,您仍然需要將元素設為NULL
; if(is_array($value) 和array_key_exists(0, $value)){
- XML_serialize($value, $level, $key );
- }其他{
- $tag = $prior_key ? $prior_key : $key;
- echo str_repeat("t", $level),' if(array_key_exists ("$key attr", $data)){ #如果該元素有屬性
- while(list($attr_name, $attr_value) =each($data["$key attr") ]))
- echo ' ',$attr_name,'="',htmlspecialchars($attr_value),'"';
- 重設($data["$key attr"]);
- }
- if(is_null($value)) echo " //> n";
- elseif(!is_array($value)) echo '>',htmlspecialchars($value),"$tag>n";
- else echo ">n",XML_serialize($value, $level+1),str_repeat("t", $level),"$tag>n";
- }
- 重置( $資料);
- if($level == 0){ $str = &ob_get_contents(); ob_end_clean();回傳$str; }
- }
- #---------- --------------#
- # XML 類別:與PHP 的XML 處理函數一起使用的實用程式類別
- #------------ ------------------------#
- class XML{
- var $parser; #對XML 解析器的參考
- var $ document; #到目前為止構建的整個XML 結構
- var $parent; #指向當前父級的指針- 父級將是一個數組
- var $stack; # 每個嵌套級別的最新父級的堆疊
- var $last_opened_tag; #追蹤最後打開的標籤。
函數XML(){
- $this->parser = &xml_parser_create();
- xml_parser_set_option(&$this->解析器, XML_OPTION_CASE_FOLDING, false); (&$this->解析器, &$this);
- xml_set_element_handler(&$this->parser, 'open','close');
- xml_set_character_data_handler(&$this->parser, 'data' );
- }
- function destruct(){ xml_parser_free(&$this->parser); }
- 函數& parse(&$data){
- $this->document = array();
- $this->stack = array();
- $this->parent = &$this->document;
- return xml_parse(&$this->parser, &$data, true) ? $ this->文檔:NULL;
- }
- function open(&$parser, $tag, $attributes){
- $this->data = ''; #儲存臨時cdata
- $this- >last_opened_tag = $tag;
- if(is_array($this->parent) and array_key_exists($tag,$this->parent)){ #如果你之前看過這個標籤
- if(is_array($this ->parent) parent[$tag]) 和array_key_exists(0,$this->parent[$tag])){ #如果鍵是數字
- #這是我們遇到的$tag 的第三個或更高版本
- $key = count_numeric_items($this->parent[$tag]);
- }else{
- #這是我們看到的 $tag 的第二個實例。左右移動
- if(array_key_exists("$tag attr",$this->parent)){
- $arr = array('0 attr'=>&$this->parent["$tag attr"] , &$this->parent[$tag]);
- unset($this->parent["$tag attr"]);
- }else{
- $arr = array(&$this- >parent[$tag]);
- }
- $this->parent[$tag] = &$arr;
- $key = 1;
- }
- $this->parent = &$this->parent[$tag];
- }else{
- $key = $tag;
- }
- if($attributes) $this->parent["$key attr"] = $attributes;
- $this->parent = &$this->parent[$key];
- $this->stack[] = &$this->parent;
- }
- function data(&$parser, $data){
- if($this->last_opened_tag != NULL) #你不需要在標籤之間儲存空格
- $this -> 資料.= $資料;
- }
- function close(&$parser, $tag){
- if($this->last_opened_tag == $tag){
- $this->parent = $this->;資料;
- $this->last_opened_tag = NULL;
- }
- array_pop($this->stack);
- if($this->stack) $this->parent = &$this->stack[count( $this->stack)-1];
- }
- }
- 函數count_numeric_items(&$array){
- 回傳is_array($array) ?計數(array_filter(array_keys($array), 'is_numeric')) : 0;
- }
- ?>
-
複製代碼
應用實例,XML來源位址:http://data.cnaz.com/spread/?tid=7&sid=42845&order=date&flags=desc&num=50
&page=1&hosts=pic.ttiankan.com&code=xml
-
-
-
include('xml.php'); //引用PHP XML操作類別
$page=$_GET['page'];
if(empty($page) || !is_numeric($page)) $page=1; p>
//偶像明星
- $xml = file_get_contents('http://data.cnaz.com/spread/?tid=7&sid=42845&order=date&flags=desc&num=50
- &page= '.$page.'&hosts=pic.ttiankan.com&code=xml');
- //$xml = file_get_contents("php://input"); //讀取取POST過來的輸入流
- $data=XML_unserialize($xml);
$item=$data['rss']['channel'];
$link = $item['link'];
- $description= $item['description'];
- $keywords = $item['keywords'];
- $totalnum = $ item['totalnum'];
- $usetime = $item['usetime'];
$totalpage=ceil($totalnum/50);
- echo('
關鍵字:'.$keywords.' '); - echo('總記錄數:'.$totalnum.', 每頁顯示50條,一共有'.$totalpage.'頁, 目前是第'.$page.'頁
');
$item=$item['item'];
echo('
-
- ');
echo('
-
-
-
分類 |
-
標題 |
-
連結 |
-
- ');
foreach($item as $list)
- {
- echo('
');- echo('
'.$list ['sort'].' | ');
- echo('
'.$list['title'].' | ');
- echo('
'.$list['link'].' | ');
- echo('
');
- }
-
echo('
-
- ');
- if($page>1) echo(' 上一頁 ');
- if($page下一頁');
- echo('
|
');
echo('
');
- ?>
-
複製程式碼
腳本學堂編輯為您推薦:
php操作xml的實例程式碼
php讀寫xml檔的方法介紹
php使用函數方式輸出XML檔的範例
php使用函數方式讀取XML檔的範例
PHP讀取XML的幾個方法
PHP讀取XML值的程式碼
php操作xml的各種方法解析
PHP產生xml檔的4種方法
php產生xml簡單實例詳解
php新增資料一例
實例學習php操作XML的類別DOMDocument
|