I know the way to open and read the content of the file with the fopen
function like this:
@fopen("inputfile.txt", "r");
But with the php://stdin
i got bit confused
$in = fopen('php://stdin', 'r');
Where should i specify the name of txt
file that i attempt to read?