关于ob_get_contents(),ob_end_clean(),ob_start(),的具体用法详解

2015-01-24信息快讯网

本篇文章是对ob_get_contents(),ob_end_clean(),ob_start(),的具体用法进行了详细的分析介绍,需要的朋友参考下

ob_get_contents();
ob_end_clean();
ob_start()

使用ob_start()把输出那同输出到缓冲区,而不是到浏览器。
然后用ob_get_contents得到缓冲区的数据。
ob_start()在服务器打开一个缓冲区来保存所有的输出。所以在任何时候使用echo ,输出都将被加入缓冲区中,直到程序运行结束或者使用ob_flush()来结束。然后在服务器中缓冲区的内容才会发送到浏览器,由浏览器来解析显示。

函数ob_end_clean 会清除缓冲区的内容,并将缓冲区关闭,但不会输出内容。
此时得用一个函数ob_get_contents()在ob_end_clean()前面来获得缓冲区的内容。
这样的话,能将在执行ob_end_clean()前把内容保存到一个变量中,然后在ob_end_clean()后面对这个变量做操作。

这是EG:
ob_start(); // buf1
echo ' multiple ';
ob_start(); // buf2
echo ' buffers work ';
$buf2 = ob_get_contents();
ob_end_clean();
$buf1 = ob_get_contents();
ob_end_clean();
echo $buf1;
echo '<br/>';
echo $buf2;
ob_get_contents

(PHP 4, PHP 5)
ob_get_contents -- Return the contents of the output buffer
Description
string ob_get_contents ( void )
This will return the contents of the output buffer or FALSE, if output buffering isn't active.
See also ob_start() and ob_get_length().
if you use ob_start with a callback function as a parameter, and that function changes ob string (as in example in manual) don't expect that ob_get_contents will return changed ob.
it will work as you would use ob_start with no parameter at all. So don't be confused.
transfer image, another method (alternative to fsockopen or function socket) :
server(192.168.0.1)
makeimage.php
...........
...........
$nameimage="xxxx.jpg"
$comand=exec("plotvelocity.sh $nameimage $paramater1 $paramater2");
ob_start();
readfile($nameimage);
$image_data = ob_get_contents();
ob_end_clean();
echo $image_data;
unlink($nameimage);
Client (192.168.0.2)
$bild="images/newimage2.gif";
$host="192.168.0.1";
$url=file_get_contents("http://$host/makeimage.php?$querystring");
$fp = fopen("$bild", 'wb');
fwrite($fp, $url);
fclose($fp);
echo '<img src="'.$bild.'">';
naturally you can transfer whichever thing and not only images
ob_get_clean

(PHP 4 >= 4.3.0, PHP 5)
ob_get_clean -- Get current buffer contents and delete current output buffer
Description
string ob_get_clean ( void )
This will return the contents of the output buffer and end output buffering. If output buffering isn't active then FALSE is returned. ob_get_clean() essentially executes both ob_get_contents() and ob_end_clean().

例子 1. A simple ob_get_clean() example

<?php
ob_start();
echo "Hello World";
$out = ob_get_clean();
$out = strtolower($out);
var_dump($out);
?>

Our example will output: string(11) "hello world"
See also ob_start() and ob_get_contents().
Notice that the function beneath does not catch errors, so throw in an @ before those ob_* calls
Running PHP4 < 4.3.0, you can simply add the following to use the function anyway:
<?php
if (!function_exists("ob_get_clean")) {
function ob_get_clean() {
$ob_contents = ob_get_contents();
ob_end_clean();
return $ob_contents;
}
}
?>

jQuery中的RadioButton,input,CheckBox取值赋值实现代码
PHP中ini_set和ini_get函数的用法小结
php中sprintf与printf函数用法区别解析
php的sprintf函数的用法 控制浮点数格式
分享下页面关键字抓取components.arrow.com站点代码
php缓冲 output_buffering和ob_start使用介绍
使用openssl实现rsa非对称加密算法示例
php fsockopen解决办法 php实现多线程
用Zend Studio+PHPnow+Zend Debugger搭建PHP服务器调试环境步骤
php object转数组示例
windows下PHP_intl.dll正确配置方法(apache2.2+php5.3.5)
PHP类继承 extends使用介绍
php检测用户是否用手机(Mobile)访问网站的类
ubuntu12.04使用c编写php扩展模块教程分享
解决file_get_contents无法请求https连接的方法
PHP反射类ReflectionClass和ReflectionObject的使用方法
php file_get_contents抓取Gzip网页乱码的三种解决方法
PHP imagegrabscreen和imagegrabwindow(截取网站缩略图)的实例代码
解析PHP中ob_start()函数的用法
关于php操作mysql执行数据库查询的一些常用操作汇总
解析crontab php自动运行的方法
关于更改Zend Studio/Eclipse代码风格主题的介绍
关于zend studio 出现乱码问题的总结
PHP中mb_convert_encoding与iconv函数的深入解析
解析php中var_dump,var_export,print_r三个函数的区别
解析PHP中intval()等int转换时的意外异常情况
解析zend studio中直接导入svn中的项目的方法步骤
探讨GDFONTPATH能否被winxp下的php支持
解析php中array_merge与array+array的区别
php输出echo、print、print_r、printf、sprintf、var_dump的区别比较
完美解决令人抓狂的zend studio 7代码提示(content Assist)速度慢的问题
PHP的curl实现get,post和cookie(实例介绍)
PHP中array_merge和array相加的区别分析
php fsockopen伪造post与get方法的详解
深入理解curl类,可用于模拟get,post和curl下载
PHP Global变量定义当前页面的全局变量实现探讨
深入分析使用mysql_fetch_object()以对象的形式返回查询结果
PHP flush()与ob_flush()的区别详解
LotusPhp笔记之:基于ObjectUtil组件的使用分析
php中flush()、ob_flush()、ob_end_flush()的区别介绍
©2014-2024 dbsqp.com