$handle = fopen ("php://stdin","r");
// if single input (having no spaces)
fscanf($handle,"%d",$n);
// if trying to read 2 values separated by a space
fscanf($handle,"%d %s",$d,$s);
// if trying to read a string having spaces
$inp = trim(fgets($handle));