0

我正在使用 xampp 和 windows 操作系统。我正在尝试执行简单的 php 脚本命令行,但出现“无法打开输入文件http://test.localhost.com/test.php ”之类的错误。下面是我的代码。

#!/usr/local/bin/php  
<?php  
$stdin = fopen('php://stdin', 'r');  
while (true) {  
        $input = fgets($stdin, 3);  
        if ($input == 42) {  
                break;  
        } else {  
                echo $input;  
        }  
}  
fclose($stdin);  
exit;

我给了我以上错误。谁能告诉我有什么问题?

4

1 回答 1

1

您想调用 CLI 脚本,而不是网站。

c:/path/to/php.exe c:/path/to/scrip.php
于 2012-07-11T13:41:50.623 回答