SyntaxFix
Write A Post
Hire A Developer
Questions
Here's another way to go about it:
$stdout = fopen('php://stdout', 'w'); fwrite($stdout, 'Hello, World!' . PHP_EOL);
The PHP_EOL adds new line.
PHP_EOL