Php/ref output ob get length
来自菜鸟教程
PHP ob_get_length()函数
例
显示输出缓冲区中的字符数:
<?php ob_start(); echo "Hello World!"; $length = ob_get_length(); ob_end_clean(); echo "The contents of the buffer are $length characters long"; ?>
定义和用法
The
ob_get_length()
函数返回最高输出缓冲区内容的长度(以字节为单位)。这并不总是与字符数相同,因为某些字符可能具有多个字节。
句法
ob_get_length();
技术细节
返回值: | 返回一个整数,指示输出缓冲区中有多少个字节 |
PHP版本: | 4.0.2+ |