PHP 基础语法(二) 2023年8月24日 PHP 0条评论 390次阅读 0人点赞 //自定义函数 function functionName() { echo”this is function”; } //调用函数 functionName(); //带参数函数 functio…