出力された文字列の取得

2022/09/22

PHP7.4.6

printで出力された文字列を取得する

<?php
function hoge(){
    print('hogehoge');
}

ob_start();
include('access.php');
hoge();
$value = ob_get_contents();
ob_end_clean();
?>