<?php

$hi = fopen('php://stdin', "r");
$ho = fopen('php://stdout', "w");

$a = "Hello word";
 
echo $a;

fclose($ho);
fclose($hi);