In Turbo Pascal we have the read(); function. Is there a function to get variables, sent to any script on PHP?
使用Turbo Pascal方式使用PHP获取变量
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-
2条回答 默认 最新
doujiang1001 2012-03-19 16:50关注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
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报