abstract:<?php$a='1';//整数$b='2';//整数function add($a.$b){ return 'a+b='.$a+.$b;}//函数echo add()//调用函数?>
<?php
$a='1';//整数
$b='2';//整数
function add($a.$b){
return 'a+b='.$a+.$b;
}//函数
echo add()//调用函数
?>
Correcting teacher:韦小宝Correction time:2019-03-14 17:06:08
Teacher's summary:写的很简单 创建变量和创建函数的命名规则基本上是一样的 记住命名规则就行了