Php/ref output ob get clean
来自菜鸟教程
PHP ob_get_clean()函数
例
将输出缓冲区的内容存储在变量中:
<?php ob_start(); echo "Hello World!"; $contents = ob_get_clean(); echo "The contents of the buffer are: "; echo $contents; ?>
定义和用法
The
ob_get_clean()
函数返回输出缓冲区的内容,然后从缓冲区中删除内容。
句法
ob_get_clean();
技术细节
返回值: | 返回包含缓冲区内容的字符串 |
PHP版本: | 4.3+ |