Tools, FAQ, Tutorials:
Opening Standard Output as a File Handle in PHP
How To Open Standard Output as a File Handle in PHP?
✍: FYIcenter.com
If you want to open the standard output as a file handle yourself, you can use the fopen("php://stdout") function. It creates a special file handle linking to the standard output, and returns the file handle. Once the standard output is opened to a file handle, you can use fwrite() to write data to the starndard output like a regular file. Here is a PHP script example on how to write to standard output:
<?php $stdout = fopen("php://stdout", "w"); fwrite($stdout,"To do:\n"); fwrite($stdout,"Looking for PHP hosting provider!\n"); fclose($stdout); ?>
This script will print:
What's your name? To do: Looking for PHP hosting provider!
If you don't want to open the standard output as a file handle yourself, you can use the constant STDOUT predefined by PHP as the file handle for standard output.
If you are using your script in a Web page, standard output is merged into the Web page HTML document.
print() and echo() also writes to standard output.
Â
⇒Reading and Writing Files in PHP
⇒⇒PHP Tutorials
2016-11-24, 1281👍, 0💬
Popular Posts:
How to create a navigation file like navigation.xhtml for an EPUB 3.0 book? At least one navigation ...
How to Test API as a Publisher Administrator? You can follow this tutorial to test an API operation ...
What Is HTML? HTML (HyperText Markup Language) is the standard markup language for creating Web page...
Where is API Management Service on my Azure Portal? If your IT department has signed up for an Azure...
Where to get the detailed description of the JSON.stringify() Function in JavaScript? Here is the de...