PHP数组转TOML
Posted PHP重构工坊
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP数组转TOML相关的知识,希望对你有一定的参考价值。
几年前的代码,稍微修改得好看一点。
<?php /** * PHP数组转Toml * * beiliwenxiao * * 2014_07_09初稿 * 2017_06_27修改 * * */ $show = ""; function getToml($arr, $title = "") { global $show; if (is_array($arr)) { foreach ($arr as $key => $value) { if (is_array($value)) { $show .= "\r\n"; if (!empty($title)) { $show .= "[" . $title . ‘.‘ . $key . "]\r\n"; } else { $show .= "[" . $key . "]\r\n"; } $show .= getToml($value, $key); } else if (!empty($value) || $value === false) { $show .= "\r\n"; $show .= $key . "=\"" . getRightString($value) . "\"\r\n"; } } } } function getRightString($str) { $value = $str; if ($value === true) { $value = "true"; } if ($value === false) { $value = "false"; } $value = addslashes($value); $value = str_replace("\‘", "‘", $value); return $value; } $test = ‘{ "dog": { "onekey": "onevalue", "tater": { "type": "pug" } } }‘; $test = json_decode($test, true); getToml($test); echo $show;
以上是关于PHP数组转TOML的主要内容,如果未能解决你的问题,请参考以下文章