本文实例讲述了PHP生成plist数据的方法。分享给大家供大家参考。具体如下:
这段代码实现PHP数组转换为苹果plist XML或文本格式
<"Unsupported data type in plist ($v)", E_USER_WARNING); $x->writeElement('string', $v); } } private function 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"' . $v->ISO8601Date() . '"'; else { trigger_error("Unsupported data type in plist ($v)", E_USER_WARNING); $this->textWriteString($text, $v); } } private function textWriteString(&$text, &$str) { $oldlocale = setlocale(LC_CTYPE, "0"); if (ctype_alnum($str)) $text .= $str; else $text .= '"' . $this->textEncodeString($str) . '"'; setlocale(LC_CTYPE, $oldlocale); } private function textEncodeString(&$str) { $newstr = ''; $i = 0; $len = strlen($str); while($i < $len) { $ch = ord(substr($str, $i, 1)); if ($ch == 0x22 || $ch == 0x5C) { // escape double quote, backslash $newstr .= '\\' . chr($ch); $i++; } else if ($ch >= 0x07 && $ch <= 0x0D ){ // control characters with escape sequences $newstr .= '\\' . substr('abtnvfr', $ch - 7, 1); $i++; } else if ($ch < 32) { // other non-printable characters escaped as unicode $newstr .= sprintf('\U%04x', $ch); $i++; } else if ($ch < 128) { // ascii printable $newstr .= chr($ch); $i++; } else if ($ch == 192 || $ch == 193) { // invalid encoding of ASCII characters $i++; } else if (($ch & 0xC0) == 0x80){ // part of a lost multibyte sequence, skip $i++; } else if (($ch & 0xE0) == 0xC0) { // U+0080 - U+07FF (2 bytes) $u = (($ch & 0x1F) << 6) | (ord(substr($str, $i+1, 1)) & 0x3F); $newstr .= sprintf('\U%04x', $u); $i += 2; } else if (($ch & 0xF0) == 0xE0) { // U+0800 - U+FFFF (3 bytes) $u = (($ch & 0x0F) << 12) | ((ord(substr($str, $i+1, 1)) & 0x3F) << 6) | (ord(substr($str, $i+2, 1)) & 0x3F); $newstr .= sprintf('\U%04x', $u); $i += 3; } else if (($ch & 0xF8) == 0xF0) { // U+10000 - U+3FFFF (4 bytes) $u = (($ch & 0x07) << 18) | ((ord(substr($str, $i+1, 1)) & 0x3F) << 12) | ((ord(substr($str, $i+2, 1)) & 0x3F) << 6) | (ord(substr($str, $i+3, 1)) & 0x3F); $newstr .= sprintf('\U%04x', $u); $i += 4; } else { // 5 and 6 byte sequences are not valid UTF-8 $i++; } } return $newstr; } private function textWriteDict(&$text, &$dict, $indentLevel) { if (count($dict) == 0) { $text .= '{}'; return; } $text .= "{\n"; $indent = ''; $indentLevel++; while(strlen($indent) < $indentLevel) $indent .= "\t"; foreach($dict as $k => &$v) { $text .= $indent; $this->textWriteValue($text, $k); $text .= ' = '; $this->textWriteValue($text, $v, $indentLevel); $text .= ";\n"; } $text .= substr($indent, 0, -1) . '}'; } private function textWriteArray(&$text, &$arr, $indentLevel) { if (count($arr) == 0) { $text .= '()'; return; } $text .= "(\n"; $indent = ''; $indentLevel++; while(strlen($indent) < $indentLevel) $indent .= "\t"; foreach($arr as &$v) { $text .= $indent; $this->textWriteValue($text, $v, $indentLevel); $text .= ",\n"; } $text .= substr($indent, 0, -1) . ')'; } } class PlistData { private $data; public function __construct($str) { $this->data = $str; } public function base64EncodedData () { return base64_encode($this->data); } public function hexEncodedData () { $len = strlen($this->data); $hexstr = ''; for($i = 0; $i < $len; $i += 4) $hexstr .= bin2hex(substr($this->data, $i, 4)) . ' '; return substr($hexstr, 0, -1); } } class PlistDate { private $dateval; public function __construct($init = NULL) { if (is_int($init)) $this->dateval = $init; elseif (is_string($init)) $this->dateval = strtotime($init); elseif ($init == NULL) $this->dateval = time(); } public function ISO8601Date() { return gmdate('Y-m-d\TH:i:s\Z', $this->dateval); } } ?>
希望本文所述对大家的php程序设计有所帮助。
标签:
PHP,生成,plist数据
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
桃源资源网 Design By www.nqtax.com
暂无“PHP生成plist数据的方法”评论...
P70系列延期,华为新旗舰将在下月发布
3月20日消息,近期博主@数码闲聊站 透露,原定三月份发布的华为新旗舰P70系列延期发布,预计4月份上市。
而博主@定焦数码 爆料,华为的P70系列在定位上已经超过了Mate60,成为了重要的旗舰系列之一。它肩负着重返影像领域顶尖的使命。那么这次P70会带来哪些令人惊艳的创新呢?
根据目前爆料的消息来看,华为P70系列将推出三个版本,其中P70和P70 Pro采用了三角形的摄像头模组设计,而P70 Art则采用了与上一代P60 Art相似的不规则形状设计。这样的外观是否好看见仁见智,但辨识度绝对拉满。