Courses
Tutorials
Practice
Data Structure
Java
Python
HTML
Interview Preparation
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
SQL
Web Development
System Design
Aptitude
GfG Premium
Similar Topics
Web Technologies
37.5K+ articles
DSA
22.8K+ articles
Python
21.3K+ articles
Experiences
16.6K+ articles
Interview Experiences
14.1K+ articles
JavaScript
12.2K+ articles
School Learning
11.5K+ articles
Misc
8.8K+ articles
PHP
3.9K+ articles
PHP-function
2.3K+ articles
PHP-output
7 posts
Recent Articles
Popular Articles
PHP ob_get_status() Function
Last Updated: 28 September 2023
The ob_get_status() is an inbuilt function in PHP that is used for retrieving the status of the output buffer.Syntaxob_get_status(bool$full_status= false) : arrayParameter...
read more
PHP-output
PHP-function
PHP
PHP ob_get_level() Function
Last Updated: 24 April 2025
The ob_get_level() function is an inbuilt function in PHP that is used to get the current output buffer level in a nested level. Output buffering is a feature in PHP that ...
read more
PHP-output
PHP-function
PHP
Output of PHP programs | Set 4
Last Updated: 22 February 2018
Predict the output of below PHP programs:Question 1[sourcecode language="PHP"]?phpWelcome to GeeksforGeeks!?[/sourcecode]Options:ErrorWelcome to GeeksforGeeks!NothingMissi...
read more
Web Technologies
PHP-output
PHP
PHP | ob_end_flush(), ob_end_clean() Functions
Last Updated: 08 March 2018
In the previous article on ob_start(), we learned how to start the output buffer; now we need to end the output buffering and send the whole HTML to the browser to render....
read more
Web Technologies
PHP-output
PHP-function
PHP
Output of PHP programs | Set 3
Last Updated: 16 January 2023
Predict the output of below PHP programs:Question 1[sourcecode language="PHP"]?php $number = array(0, 1, one, two, three, 5); $num = preg_grep(/[0-5]/, $number); ...
read more
Web Technologies
PHP-output
PHP
Output of PHP programs | Set 2 ( Filters )
Last Updated: 07 March 2018
Predict the output of the following PHP programs:Question 1[sourcecode language="PHP"]?php $num = 123; if (!filter_var($num, FILTER_VALIDATE_INT)) echo(Hello)...
read more
Web Technologies
PHP-output
PHP
Output of PHP programs | Set 1 (Regular Expressions)
Last Updated: 24 January 2018
Predict the output of following PHP programs:Question 1[sourcecode language="PHP"]?php echo str_pad(Welcome, 5). to GeeksforGeeks.;?[/sourcecode]Options:WelcomeWelcomeW...
read more
Web Technologies
PHP-output
PHP
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !