首页 > 代码库 > php -- 获取函数参数
php -- 获取函数参数
----- 015-parameter.php -----
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta http-equiv="content-type" content="text/html; charset=utf-8"> 5 <title>获取函数参数</title> 6 </head> 7 <body> 8 <h3>获取函数参数</h3> 9 <pre> 10 <?php 11 function hello() 12 { 13 $prams = func_get_args(); 14 foreach ($prams as $value) { 15 echo "Hello,", $value, "!\n"; 16 } 17 } 18 hello("塞班", "黑莓", "联发科"); 19 ?> 20 </pre> 21 </body> 22 </html>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。