ホームページ >バックエンド開発 >PHPチュートリアル >PHP_PHP チュートリアルで plist データを生成する方法
この記事では、PHPでplistデータを生成する方法について説明します。皆さんの参考に共有してください。詳細は以下の通りです
このコードは、PHP 配列から Apple plist XML またはテキスト形式への変換を実装します
?
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 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 |
/** * PropertyList クラス * Apple プロパティ リスト (.plist) XML および配列からのテキスト ファイルの書き込みを実装します。 * * @著者 ジーザス A. アルバレス */ 関数 plist_encode_text ($obj) { $plist = 新しいプロパティリスト($obj); return $plist->text(); } 関数 plist_encode_xml ($obj) { $plist = 新しいプロパティリスト($obj); return $plist->xml(); } クラスプロパティリスト { プライベート $obj、$xml、$text; パブリック関数 __construct ($obj) { $this->obj = $obj; } プライベート静的関数 is_assoc ($array) { return (is_array($array) && 0 !== count(array_diff_key($array, array_keys(array_keys($array))))); } パブリック関数xml() { if (isset($this->xml)) return $this->xml; $x = 新しい XMLWriter(); $x->openMemory(); $x->setIndent(TRUE); $x->startDocument('1.0', 'UTF-8'); $x->writeDTD('plist', '-//Apple//DTD PLIST 1.0//EN', 'http://www.apple.com/DTDs/PropertyList-1.0.dtd'); $x->startElement('plist'); $x->writeAttribute('バージョン', '1.0'); $this->xmlWriteValue($x, $this->obj); $x->endElement(); // pリスト $x->endDocument(); $this->xml = $x->outputMemory(); $this->xml を返す; } パブリック関数 text() { if (isset($this->text)) return $this->text; $text = ''; $this->textWriteValue($text, $this->obj); $this->text = $text; $this->テキストを返す; } プライベート関数 xmlWriteDict(XMLWriter $x, &$dict) { $x->startElement('dict'); foreach($dict as $k => &$v) { $x->writeElement('key', $k); $this->xmlWriteValue($x, $v); } $x->endElement(); // 辞書 } プライベート関数 xmlWriteArray(XMLWriter $x, &$arr) { $x->startElement('array'); foreach($arr as &$v) $this->xmlWriteValue($x, $v); $x->endElement(); // 配列 } プライベート関数 xmlWriteValue(XMLWriter $x, &$v) { if (is_int($v) || is_long($v)) $x->writeElement('integer', $v); elseif (is_float($v) || is_real($v) || is_double($v)) $x->writeElement('real', $v); elseif (is_string($v)) $x->writeElement('string', $v); elseif (is_bool($v)) $x->writeElement($v?'true':'false'); elseif (PropertyList::is_assoc($v)) $this->xmlWriteDict($x, $v); elseif (is_array($v)) $this->xmlWriteArray($x, $v); elseif (is_a($v, 'PlistData')) $x->writeElement('data', $v->base64EncodedData()); elseif (is_a($v, 'PlistDate')) $x->writeElement('date', $v->encodedDate()); その他 { trigger_error("plist ($v) でサポートされていないデータ型", E_USER_WARNING); $x->writeElement('string', $v); } } プライベート関数 textWriteValue(&$text, &$v, $indentLevel = 0) { if (is_int($v) || is_long($v)) $text .= sprintf("%d", $v); elseif (is_float($v) || is_real($v) || is_double($v)) $text .= sprintf("%g", $v); elseif (is_string($v)) $this->textWriteString($text, $v); elseif (is_bool($v)) $text .= $v?'YES':'NO'; elseif (PropertyList::is_assoc($v)) $this->textWriteDict($text, $v, $indentLevel); elseif (is_array($v)) $this->textWriteArray($text, $v, $indentLevel); elseif (is_a($v, 'PlistData')) $text .= '<' 。 $v->hexEncodedData() 。 '>'; elseif (is_a($v, 'PlistDate')) $text .= '"' . $v->ISO8601Date() . '"'; その他 { trigger_error("plist ($v) でサポートされていないデータ型", E_USER_WARNING); $this->textWriteString($text, $v); } } プライベート関数 textWriteString(&$text, &$str) { $oldlocale = setlocale(LC_CTYPE, "0"); if (ctype_alnum($str)) $text .= $str; else $text .= '"' . $this->textEncodeString($str) . '"'; setlocale(LC_CTYPE, $oldlocale); } プライベート関数 textEncodeString(&$str) { $newsstr = ''; $i = 0; $len = strlen($str); while($i < $len) { $ch = ord(substr($str, $i, 1)); if ($ch == 0x22 || $ch == 0x5C) { // 二重引用符、バックスラッシュをエスケープします $newsstr .= '\' . chr($ch); $i++; } else if ($ch >= 0x07 && $ch // エスケープシーケンスを使用した制御文字 $newsstr .= '\' . substr('abtnvfr', $ch - 7, 1); $i++; } else if ($ch // 他の印刷不可能な文字は Unicode としてエスケープされます $newsstr .= sprintf('U%04x', $ch); $i++; } else if ($ch // ascii 印刷可能 $newsstr .= chr($ch); $i++; } else if ($ch == 192 || $ch == 193) { // ASCII 文字のエンコーディングが無効です $i++; } else if (($ch & 0xC0) == 0x80){ // 失われたマルチバイト シーケンスの一部、スキップ $i++; } else if (($ch & 0xE0) == 0xC0) { // U+0080 - U+07FF (2バイト) $u = (($ch & 0x1F) $newsstr .= sprintf('U%04x', $u); $i += 2; } else if (($ch & 0xF0) == 0xE0) { // U+0800 - U+FFFF (3 バイト) $u = (($ch & 0x0F) $text .= $インデント; $this->textWriteValue($text, $k); $text .= ' = '; $this->textWriteValue($text, $v, $indentLevel); $text .= ";n"; } $text .= substr($indent, 0, -1) . '}'; } プライベート関数 textWriteArray(&$text, &$arr, $indentLevel) { if (count($arr) == 0) { $text .= '()'; 戻る; } $text .= "(n"; $インデント = ''; $indentLevel++; while(strlen($indent) < $indentLevel) $indent .= "t"; foreach($arr as &$v) { $text .= $インデント; $this->textWriteValue($text, $v, $indentLevel); $text .= ",n"; } $text .= substr($indent, 0, -1) . ')'; } } クラスPlistData { プライベート $データ; パブリック関数 __construct($str) { $this->data = $str; } パブリック関数base64EncodedData() { base64_encode($this->data); を返す} パブリック関数 hexEncodedData() { $len = strlen($this->data); $hexstr = ''; for($i = 0; $i $hexstr .= bin2hex(substr($this->data, $i, 4)) . ' '; substr($hexstr, 0, -1); を返す} } クラスPlistDate { プライベート $dateval; パブリック関数 __construct($init = NULL) { if (is_int($init)) $this->dateval = $init; elseif (is_string($init)) $this->dateval = strtotime($init); elseif ($init == NULL) $this->dateval = time(); } パブリック関数 ISO8601Date() { return gmdate('Y-m-dTH:i:sZ', $this->dateval); } } ?> |
ここで説明されている大家向けの php プログラムの設計が役立つことを希望します。
http://www.bkjia.com/PHPjc/1017138.html