(PHP 4, PHP 5, PHP 7)
ob_end_clean — ��գ����������������ر��������
�˺������������������������ݲ��ر�����������������Ҫ��һ���������������ݣ�������ob_end_clean()֮ǰ����ob_get_contents()����Ϊ������ob_end_clean()ʱ���������ݽ���������
�ɹ�ʱ���� TRUE
�� ������ʧ��ʱ���� FALSE
�� �����ԭ�������ǣ��ڵ���ʱû��һ�������õĻ���������������ΪijЩԭ�������ܱ�ɾ�������ܶ�����������ԣ���
�������ʧ���ˣ�������һ��E_NOTICE
�쳣��
�汾 | ˵�� |
---|---|
4.2.0 | ����˲�������ֵ�� |
��������Ӹ�����һ��ȥ����������������ķ�����
Example #1 ob_end_clean() example
<?php
ob_start();
echo 'Text that won\'t get displayed.';
ob_end_clean();
?>