我正在使用 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;
我给了我以上错误。谁能告诉我有什么问题?