문제

In Turbo Pascal we have the read(); function. Is there a function to get variables, sent to any script on PHP?

도움이 되었습니까?

해결책

The Turbo Pascal read() and readln() functions read from file. If no filename is specified, they read from standard input.

In PHP, you have to open the file first, then read from the file handle allocated on open: the equivalent of standard input in PHP is php://input, so something like:

$filename = "php://input";
$handle = fopen($filename, "r");
$contents = fread($handle, 1024);
fclose($handle);

But note that it's not particularly practical to do this from a web interface, only from the CLI

다른 팁

Are you maybe looking for the eval() function? http://php.net/manual/en/function.eval.php

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top