RosettaCodeData/Task/Hello-world-Line-printer/PHP/hello-world-line-printer-2.php

6 lines
80 B
PHP
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
<?php
fclose(STDOUT);
$STDOUT = fopen('/dev/lp0', 'a');
echo 'Hello world!';
?>