xml转array
字串
$xml = simplexml_load_string($data);
$array = json_decode(json_encode($xml),TRUE);
文件
$xml = simplexml_load_file($data);
$array= json_decode(json_encode($xml),TRUE);
或者
$array = (array) sim...
xml转array
字串
$xml = simplexml_load_string($data);
$array = json_decode(json_encode($xml),TRUE);
文件
$xml = simplexml_load_file($data);
$array= json_decode(json_encode($xml),TRUE);
或者
$array = (array) sim...
每次修改都要找,今天把位置记录下来。
文件路径是:
ckfinder\core\connector\php\php5\Utils\Misc.php中
原函数是:
public static function mbBasename($file) { $explode = explode('/', str_replace("\\", "/", $file...