函数 - 返回值

来源:互联网 发布:淘宝跟客服聊天 编辑:程序博客网 时间:2024/06/06 03:33
<?phpfunction add($x,$y)  {  $total = $x + $y;  return $total;  }echo "4 + 26 = " . add(4,26);?>

原创粉丝点击