DataReturn.class.phpクラスファイルは次のとおりです:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 |
/**データフォーマットクラスを返す * 日付: 2011-08-15 * 著者: fdipzone */
class DataReturn{ // クラスの開始
プライベート $type プライベート $xmlroot プライベート$コールバック プライベート $returnData
パブリック関数 __construct($param=array()){ $this->type = $this->exists($param,'type')? strtoupper($param['type']) : 'JSON'; // JSON,XML,CALLBACK,ARRAY を入力します。 $this->xmlroot = $this->exists($param,'xmlroot')? $param['xmlroot'] : 'xmlroot'; // XML ルート dom 名$this->callback = $this->exists($param,'callback')? $param['callback'] : '';
$format = 配列(); $format['retcode'] = $this->exists($param,'format.retcode')? $param['format']['retcode'] : 'retcode';//retcode に対応する名前$format['msg'] = $this->exists($param,'format.msg')? $param['format']['msg'] : 'msg'; //msg 对应名 $format['data'] = $this->exists($param,'format.data')? $param['形式']['データ'] : 'データ'; //data 对应名
$result = array(); $result[$format['retcode']] = $this->exists($param,'retcode')? $param['retcode'] : 0; $result[$format['msg']] = $this->exists($param,'msg')? $param['msg'] : ''; $result[$format['data']] = $this->exists($param,'data')? $param['データ'] : '';
$this->returnData = $result; }
//输出データ パブリック関数 data_return(){ ob_clean(); スイッチ($this->type){ ケース「JSON」: $this->json_return(); 休憩; ケース「XML」: $this->xml_return(); 休憩; ケース「コールバック」: $this->callback_return(); 休憩; ケース「ARRAY」: $this->array_return(); 休憩; デフォルト: $this->json_return(); } exit(); }
//JSON 格式データを出力、コールバックパラメータなどがある場合は JSONP 格式を返します プライベート関数 json_return(){ header('content-type:text/html;charset=utf-8'); if(empty($this->callback)){ echo json_encode($this->returnData); }その他{ echo $this->callback.'('.json_encode($this->returnData).');'; } }
//出XML格式データ プライベート関数 xml_return(){ header('content-type:text/xml;charset=utf-8'); echo $this->xml_encode($this->returnData,$this->xmlroot); }
//出力JSON格式データ、并调用コールバックメソッド プライベート関数 callback_return(){ header('content-type:text/html;charset=utf-8'); $this->callback = empty($this->callback)? 'コールバック' : $this->コールバック; echo ""; }
//输出数组格式データセット プライベート関数 array_return(){ header('content-type:text/html;charset=utf-8'); echo ' '; </p> <p> print_r($this->returnData); </p> <p> echo ''; }
//XML コード プライベート関数 xml_encode($data, $root='xmlroot', $encoding='utf-8') { $xml = "n"; $xml.= "<" 。 $root 。 ">n"; $xml.= $this->data_to_xml($data); $xml.= "" . $root 。 ">"; $xml を返します。 }
//数组转XML格式 プライベート関数 data_to_xml($data) { if (is_object($data)) { $data = get_object_vars($data); } $xml = ''; foreach ($data as $key => $val) { is_numeric($key) && $key = "アイテムid="$key""; $xml.="<$key>"; $xml.= ( is_array($val) || is_object($val)) ? $this->data_to_xml($val) : $this->cdata($val); list($key, ) =explode(' ', $key); $xml.="$key>n"; } $xml を返します。 }
// データデータが存在するかどうかを判断する プライベート関数が存在します($obj,$key=''){ if($key==''){ return isset($obj) && !empty($obj); }その他{ $keys =explode('.',$key); for($i=0,$max=count($keys); $i if(isset($obj[$keys[$i]])){ $obj = $obj[$keys[$i]]; }その他{ false を返します。 } } return isset($obj) && !empty($obj); } }
// 判断否か加上标记 プライベート関数 cdata($val){ if(!empty($val) && !preg_match('/^[A-Za-z0-9+$]/',$val)){ $val = ''; } $val を返します。 } } // 授業終了 ?> |
デモサンプルプログラムは以下の通りです:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
require_once('DataReturn.class.php'); $param = array( // DataReturn パラメータ'Type' = & GT; // 出力 json、xml、コールバック、配列の型はデフォルトで json になります 'retcode' => '1000', // retcodeの値、デフォルトは0です 'data' => array( // 出力するデータ
'名前' => 'fdipzone'、 「性別」 => 1、 「年齢」 => 28 )、 'format' => array( // 出力データキーの形式、デフォルトは retcode、msg、data です 'retcode' => 'ステータス'、 'msg' => '情報'、 'データ' => '結果' )、 'xmlroot' => 'xmlroot', // type=XML、XML ルート ノードの名前の場合、デフォルトは xmlroot です 'callback' => 'callback' /* コールバックメソッド名 J Type = json、デフォルトは空、空でない場合は出力コールバック ({data});type=CALLBACK の場合、デフォルトはコールバックで、ページの JS コールバック メソッドを自動的に呼び出します ); $obj = new DataReturn($param) // DataReturn クラス オブジェクトを作成します $obj->data_return() // 形式に従ってデータを出力します ?>
|