时间:2021-07-01 10:21:17 帮助过:14人阅读
require 'index.html'; //require 与 include 的区别在于前者出错,不再运行程序
function test(){
if(isset ($_POST[c]) && isset ($_POST[d])){
$a=$_POST[c];
$b=$_POST[d];
}
if($a<$b){
return 1; //return 返回函数值之后,终止函数脚本运行,不再运行余下语句
}
return -1;
}
$res=test();
if($res==1){
echo '$x<$y';
}
else{
echo '$x>$y';
}
?>
require 'index.html';
function test() {
$a = $b = 0;
if(isset ($_POST['c']) && isset ($_POST['d'])){
$a=$_POST['c'];
$b=$_POST['d'];
}
if($a<$b){
return 1;
}
return -1;
}
$res=test();
if($res==1){
echo '$x<$y';
}else{
echo '$x>$y';
}
?>