2014-3-31 22:36 Monday  

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...

阅读全文>>

2012-2-16 16:54 Thursday  

每次修改都要找,今天把位置记录下来。

文件路径是:

ckfinder\core\connector\php\php5\Utils\Misc.php中

原函数是:

public static function mbBasename($file)
    {
        $explode = explode('/', str_replace("\\", "/", $file...

阅读全文>>