php – 在ob_start()中使用include()

发布时间:2022-04-30 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了php – 在ob_start()中使用include()脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。
这里需要一些 PHP帮助,包含的内容显示为’1′,这意味着它的真实但需要它的内容才能显示,我不确定它为什么不是.这是一个缩短版的函数
public function content {
    $websITe->content = 'Some content here. ';
    ob_start();
    include('myfile.PHP');
    $file_content = ob_end_clean();
    $website->content .= $file_content;
    $website->content .= ' Some more content here.';
     echo $website->content;
}

输出

Some content here 
1 
Some more content here

当我需要输出时:

Some content here
'Included file content here'
Some more content here

我有什么想法可以解决这个问题吗?

尝试使用Ob_get_clean()而不是ob_end_clean().

两者都清除当前缓冲区但ob_end_clean()返回一个布尔值,而ob_get_clean()返回当前缓冲区的内容.

脚本宝典总结

以上是脚本宝典为你收集整理的php – 在ob_start()中使用include()全部内容,希望文章能够帮你解决php – 在ob_start()中使用include()所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。