/**
* 用来调试输出结果
* @param type $data
* @return type 
*/
function shionyu_debug($data) {
  ob_start();
  var_dump($data);
  $log = ob_get_contents();
  ob_end_clean();
  // log_message('debug', "shionyu_debug:".$log);
  return $log;
}

  

posted on 2014-04-25 15:22  cchun  阅读(237)  评论(0编辑  收藏  举报