5 lines
80 B
PHP
5 lines
80 B
PHP
<?php
|
|
fclose(STDOUT);
|
|
$STDOUT = fopen('/dev/lp0', 'a');
|
|
echo 'Hello world!';
|
|
?>
|