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 standard 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.
⇒ Working with Directories and Files in PHP
⇐ Reading Data from Keyboard in PHP
2016-11-24, 5522🔥, 0💬
Popular Posts:
What is EPUB 3.0 Metadata "dcterms:modified" property? EPUB 3.0 Metadata "dcterms:modified" is a req...
How to add a new operation to an API on the Publisher Dashboard of an Azure API Management Service? ...
How to use "xsl-transform" Azure API Policy Statement? The "xsl-transform" Policy Statement allows y...
How to use the "forward-request" Policy Statement to call the backend service for an Azure API servi...
How to use the "set-body" Policy Statement for an Azure API service operation? The "set-body" Policy...