Chuyển nội dung view thành biến thay vì in ra bằng cách dùng ab_start(); (ok)

ob_start()
    require_once PATH_APPLICATION . '/view/' . $view . '.php'; 
    $content = ob_get_contents(); 
ob_end_clean();

require_once PATH_APPLICATION . '/view/' . $view . '.php'; $content = ob_get_contents(); ob_end_clean();

Last updated