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>

php -- 获取函数参数,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。