当前位置:Gxlcms > PHP教程 > PHP制作了一个计算器,出了点有关问题,求解

PHP制作了一个计算器,出了点有关问题,求解

时间:2021-07-01 10:21:17 帮助过:1人阅读

PHP 制作了一个计算器,出了点问题,求解!
这是我做0输入的处理代码:

===============================================================

if($_POST['num0']){
$num=$_POST['num0'];
if(is_dir('txt')){
$open=fopen("txt/caculator.txt","r+");
if(is_file("txt/caculator.txt")){
$a=file_get_contents("txt/caculator.txt");
$e=(int)$a;
$b=$e."0";
echo $b;
file_put_contents("txt/caculator.txt",$b);
fclose($open);
}
}
}
=================================================================
这是表单:
=================================================================

人气教程排行