标签:函数 code define png span fun 使用 def nbsp
<?php /** 使用函数 求圆的面积 **/ function circle($n){ define(‘PI‘,3.14); echo PI * $n * $n; } circle(3); ?>
使用函数 求圆的面积
原文地址:https://www.cnblogs.com/xm666/p/11163286.html