$r = preg_replace_callback('/([a-z0-9])([A-Z])/', function($matches) {
      return $matches[1] . ' ' . strtolower($matches[2]);
    }, $r);
--------------------
replace become:
-------------------
/* Code Loi Error
    $r = preg_replace_callback('/([a-z0-9])([A-Z])/', function($matches) {
      return $matches[1] . ' ' . strtolower($matches[2]);
    }, $r);
	*/
------------------
Vào 21:23:45 UTC+7 Thứ ba, ngày 17 tháng sáu năm 2014, Phuc Tranquang đã viết: