如上所述,我试图在我的PHP脚本中获取用户输入以执行进一步的任务。 PHP中是否有任何方法可以获得用户输入,例如' scanf()'用于C
<?php
echo "Swapping Numbers </br> Please select the method: </br>";
echo "1. Using 3rd variable </br> 2. Using add/sub </br> 3. Using mul/div";
//read user input $choice
switch($choice)
{
case 1:
break;
case 2:
break;
case 3:
break;
default:
echo "</br>You entered wrong choice";
}
?>
答案 0 :(得分:4)
STDIN
常量是预先定义的,可供您立即使用。
<?php
$line = trim(fgets(STDIN)); // reads one line from STDIN
fscanf(STDIN, "%d\n", $number); // reads number from STDIN
例如
<?php
echo "Enter a number: ";
fscanf(STDIN, "%d\n", $number);
switch ($number) {
case 1: echo "one\n"; break;
case 2: echo "two\n"; break;
case 3: echo "three\n"; break;
default: echo "I can't count that high\n";
}
查看I/O docs以获取更多详细信息
答案 1 :(得分:1)
您应该使用readline():
var_dump(readline('Enter number: '));
答案 2 :(得分:0)
您可以处理来自表单元素或来自网址的用户输入。 在你的情况下你可以这样使用。
$choice = $_GET['choise'];
用户将按此键入
http://localhost/your_file_name.php?choise=option
比你应该使用你的开关
switch($choice)
{
case 1:
break;
case 2:
break;
case 3:
break;
default:
echo "</br>You entered wrong choice";
}
?>