PHP头条
热点:

getPhpContents-PHP源码


php代码

function getPhpContents($path, $vars) {
    ob_start();
    include $path;
    $result = ob_get_contents();
    ob_end_clean();
    return $result;
}

www.phpzy.comtrue/phpyy/45510.htmlTechArticlegetPhpContents-PHP源码 php代码 function getPhpContents($path, $vars) { ob_start(); include $path; $result = ob_get_contents(); ob_end_clean(); return $result;}...

相关文章

PHP之友评论

今天推荐