將 print_r() 輸出成為字串資料

1 篇文章 / 0 new
author
將 print_r() 輸出成為字串資料
若不想 print_r 直接輸出到畫面上, 可以使用下列方法將 print_r() 的輸出轉為字串資料, 再自行處理
ob_start(); //開啟 buffer
        print_r($result); //print the result
        $output = ob_get_contents(); //取得資料 buffer
        ob_end_clean(); //清除 buffer
Free Web Hosting