设为首页收藏本站language 语言切换
查看: 1466|回复: 0
收起左侧

PHP语言参考 - 函数

[复制链接]
发表于 2010-2-24 13:38:50 | 显示全部楼层 |阅读模式
<DIV class=titlepage><DIV><DIV><H1><A name=language.functions></A>第 17 章 函数</H1></DIV></DIV></DIV><H2>目录</H2><DL><DT><U><FONT color=#000099>用户自定义函数</FONT></U><DT><U><FONT color=#000099>函数的参数</FONT></U><DT><U><FONT color=#000099>返回值</FONT></U><DT><U><FONT color=#000099>变量函数</FONT></U><DT><U><FONT color=#000099>内部(内置)函数</FONT></U></DT></DL><DIV class=sect1 lang=zh-cn><DIV class=titlepage><DIV><DIV><H1><A name=functions.user-defined></A>用户自定义函数</H1></DIV></DIV></DIV><>一个函数可由以下的语法来定义: </P><><DIV class=example><A name=id2675118></A><><B>例 17.1. 展示函数用途的伪代码</B></P><DIV class=example-contents><DIV class=phpcode><CODE><SPAN class=html><FONT face=Courier><SPAN class=default><FONT color=#0000bb>&lt;?php<BR></FONT></SPAN><SPAN class=keyword><FONT color=#007700>function </FONT></SPAN><SPAN class=default><FONT color=#0000bb>foo</FONT></SPAN><SPAN class=keyword><FONT color=#007700>(</FONT></SPAN><SPAN class=default><FONT color=#0000bb>$arg_1</FONT></SPAN><SPAN class=keyword><FONT color=#007700>, </FONT></SPAN><SPAN class=default><FONT color=#0000bb>$arg_2</FONT></SPAN><SPAN class=keyword><FONT color=#007700>, ..., </FONT></SPAN><SPAN class=default><FONT color=#0000bb>$arg_n</FONT></SPAN></FONT><FONT face=Courier><SPAN class=keyword><FONT color=#007700>)<BR>{<BR>    echo </FONT></SPAN><SPAN class=string><FONT color=#dd0000>"Example function.\n"</FONT></SPAN></FONT><FONT face=Courier><SPAN class=keyword><FONT color=#007700>;<BR>    return </FONT></SPAN><SPAN class=default><FONT color=#0000bb>$retval</FONT></SPAN></FONT><FONT face=Courier><SPAN class=keyword><FONT color=#007700>;<BR>}<BR></FONT></SPAN><SPAN class=default><FONT color=#0000bb>?&gt;</FONT></SPAN></FONT></SPAN></CODE></DIV></DIV></DIV><BR class=example-break><><FONT face=Courier></FONT></P><>任何有效的 PHP 代码都有可能出现在函数内部,甚至包括其它函数和<A title=类 href="http://www.php.net/manual/zh/language.oop.php#keyword.class"><U><FONT color=#000099>类</FONT></U></A>定义。 </P><>函数名和 PHP 中的其它标签命名规则相同。有效的函数名以字母或下划线打头,后面跟字母,数字或下划线。可以用正则表达式表示为:<VAR>[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*</VAR>。 </P><>在 PHP 3 中,函数必须在被调用之前定义。而 PHP 4 则不再有这样的条件。<SPAN class=emphasis><EM><STRONG>除非</STRONG></EM></SPAN>函数如以下两个范例中有条件的定义。 </P><>如果一个函数以以下两个范例的方式有条件的定义,其定义必须在调用<SPAN class=emphasis><EM><STRONG>之前</STRONG></EM></SPAN>完成。 </P><><DIV class=example><A name=id2677812></A><><B>例 17.2. 有条件的函数</B></P><DIV class=example-contents><DIV class=phpcode><CODE><SPAN class=html><FONT face=Courier><SPAN class=default><FONT color=#0000bb>&lt;?php<BR><BR>$makefoo </FONT></SPAN><SPAN class=keyword><FONT color=#007700>= </FONT></SPAN><SPAN class=default><FONT color=#0000bb>true</FONT></SPAN></FONT><SPAN class=keyword><FONT face=Courier color=#007700>;<BR><BR></FONT></SPAN><FONT face=Courier><SPAN class=comment><FONT color=#ff8000>/* We can't call foo() from here<BR>   since it doesn't exist yet,<BR>   but we can call bar() */<BR><BR></FONT></SPAN><SPAN class=default><FONT color=#0000bb>bar</FONT></SPAN></FONT><FONT face=Courier><SPAN class=keyword><FONT color=#007700>();<BR><BR>if (</FONT></SPAN><SPAN class=default><FONT color=#0000bb>$makefoo</FONT></SPAN></FONT><FONT face=Courier><SPAN class=keyword><FONT color=#007700>) {<BR>  function </FONT></SPAN><SPAN class=default><FONT color=#0000bb>foo</FONT></SPAN></FONT><FONT face=Courier><SPAN class=keyword><FONT color=#007700>()<BR>  {<BR>    echo </FONT></SPAN><SPAN class=string><FONT color=#dd0000>"I don't exist until program execution reaches me.\n"</FONT></SPAN></FONT><SPAN class=keyword><FONT face=Courier color=#007700>;<BR>  }<BR>}<BR><BR></FONT></SPAN><FONT face=Courier><SPAN class=comment><FONT color=#ff8000>/* Now we can safely call foo()<BR>   since $makefoo evaluated to true */<BR><BR></FONT></SPAN><SPAN class=keyword><FONT color=#007700>if (</FONT></SPAN><SPAN class=default><FONT color=#0000bb>$makefoo</FONT></SPAN><SPAN class=keyword><FONT color=#007700>) </FONT></SPAN><SPAN class=default><FONT color=#0000bb>foo</FONT></SPAN></FONT><FONT face=Courier><SPAN class=keyword><FONT color=#007700>();<BR><BR>function </FONT></SPAN><SPAN class=default><FONT color=#0000bb>bar</FONT></SPAN></FONT><FONT face=Courier><SPAN class=keyword><FONT color=#007700>()<BR>{<BR>  echo </FONT></SPAN><SPAN class=string><FONT color=#dd0000>"I exist immediately upon program start.\n"</FONT></SPAN></FONT><FONT face=Courier><SPAN class=keyword><FONT color=#007700>;<BR>}<BR><BR></FONT></SPAN><SPAN class=default><FONT color=#0000bb>?&gt;</FONT></SPAN></FONT></SPAN></CODE></DIV></DIV></DIV><BR class=example-break><><FONT face=Courier></FONT></P><><FONT face=Courier></FONT><DIV class=example><A name=id2677830></A><><B>例 17.3. 函数中的函数</B></P><DIV class=example-contents><DIV class=phpcode><CODE><SPAN class=html><FONT face=Courier><SPAN class=default><FONT color=#0000bb>&lt;?php<BR></FONT></SPAN><SPAN class=keyword><FONT color=#007700>function </FONT></SPAN><SPAN class=default><FONT color=#0000bb>foo</FONT></SPAN></FONT><FONT face=Courier><SPAN class=keyword><FONT color=#007700>()<BR>{<BR>  function </FONT></SPAN><SPAN class=default><FONT color=#0000bb>bar</FONT></SPAN></FONT><FONT face=Courier><SPAN class=keyword><FONT color=#007700>()<BR>  {<BR>    echo </FONT></SPAN><SPAN class=string><FONT color=#dd0000>"I don't exist until foo() is called.\n"</FONT></SPAN></FONT><SPAN class=keyword><FONT face=Courier color=#007700>;<BR>  }<BR>}<BR><BR></FONT></SPAN><FONT face=Courier><SPAN class=comment><FONT color=#ff8000>/* We can't call bar() yet<BR>   since it doesn't exist. */<BR><BR></FONT></SPAN><SPAN class=default><FONT color=#0000bb>foo</FONT></SPAN></FONT><SPAN class=keyword><FONT face=Courier color=#007700>();<BR><BR></FONT></SPAN><FONT face=Courier><SPAN class=comment><FONT color=#ff8000>/* Now we can call bar(),<BR>   foo()'s processesing has<BR>   made it accessable. */<BR><BR></FONT></SPAN><SPAN class=default><FONT color=#0000bb>bar</FONT></SPAN></FONT><FONT face=Courier><SPAN class=keyword><FONT color=#007700>();<BR><BR></FONT></SPAN><SPAN class=default><FONT color=#0000bb>?&gt;</FONT></SPAN></FONT></SPAN></CODE></DIV></DIV></DIV><BR class=example-break><><FONT face=Courier></FONT></P><>HP 中的所有函数和类都具有全局域,可以在内部定义外部调用,反之亦然。 </P><>HP 不支持函数重载,也不可能取消定义或者重定义已声明的函数。 </P><BLOCKQUOTE><><B>注意: </B>函数名是非大小写敏感的,不过在调用函数的时候,通常使用其在定义时相同的形式。 </P></BLOCKQUOTE><>HP 3 虽然支持默认参数(更多信息请参照<A title=默认参数的值 href="http://www.php.net/manual/zh/functions.arguments.php#functions.arguments.default"><U><FONT color=#000099>默认参数的值</FONT></U></A>),但是却不支持可变的参数个数。PHP 4 支持:见<A title=可变长度参数列表 href="http://www.php.net/manual/zh/functions.arguments.php#functions.variable-arg-list"><U><FONT color=#000099>可变长度的参数列表</FONT></U></A>和涉及到的相关函数 <A href="http://www.php.net/manual/zh/function.func-num-args.php"><U><FONT color=#000099>func_num_args()</FONT></U></A>, <A href="http://www.php.net/manual/zh/function.func-get-arg.php"><U><FONT color=#000099>func_get_arg()</FONT></U></A>,以及 <A href="http://www.php.net/manual/zh/function.func-get-args.php"><U><FONT color=#000099>func_get_args()</FONT></U></A> 以获取更多的信息。 </P><>在 PHP 中可以调用递归函数。但是要避免递归函数/方法调用超过 100-200 层,因为可能会破坏堆栈从而使当前脚本终止。 <DIV class=example><A name=id2677945></A><><B>例 17.4. 递归函数</B></P><DIV class=example-contents><DIV class=phpcode><CODE><SPAN class=html><FONT face=Courier><SPAN class=default><FONT color=#0000bb>&lt;?php<BR></FONT></SPAN><SPAN class=keyword><FONT color=#007700>function </FONT></SPAN><SPAN class=default><FONT color=#0000bb>recursion</FONT></SPAN><SPAN class=keyword><FONT color=#007700>(</FONT></SPAN><SPAN class=default><FONT color=#0000bb>$a</FONT></SPAN></FONT><FONT face=Courier><SPAN class=keyword><FONT color=#007700>)<BR>{<BR>    if (</FONT></SPAN><SPAN class=default><FONT color=#0000bb>$a </FONT></SPAN><SPAN class=keyword><FONT color=#007700>&lt; </FONT></SPAN><SPAN class=default><FONT color=#0000bb>20</FONT></SPAN></FONT><FONT face=Courier><SPAN class=keyword><FONT color=#007700>) {<BR>        echo </FONT></SPAN><SPAN class=string><FONT color=#dd0000>"$a\n"</FONT></SPAN></FONT><FONT face=Courier><SPAN class=keyword><FONT color=#007700>;<BR>        </FONT></SPAN><SPAN class=default><FONT color=#0000bb>recursion</FONT></SPAN><SPAN class=keyword><FONT color=#007700>(</FONT></SPAN><SPAN class=default><FONT color=#0000bb>$a </FONT></SPAN><SPAN class=keyword><FONT color=#007700>+ </FONT></SPAN><SPAN class=default><FONT color=#0000bb>1</FONT></SPAN></FONT><FONT face=Courier><SPAN class=keyword><FONT color=#007700>);<BR>    }<BR>}<BR></FONT></SPAN><SPAN class=default><FONT color=#0000bb>?&gt;</FONT></SPAN></FONT></SPAN></CODE></DIV></DIV></DIV></DIV>
您需要登录后才可以回帖 登录 | 论坛注册

本版积分规则

QQ|Archiver|手机版|小黑屋|sitemap|鸿鹄论坛 ( 京ICP备14027439号 )  

GMT+8, 2025-4-5 20:01 , Processed in 0.314847 second(s), 23 queries , Redis On.  

  Powered by Discuz!

  © 2001-2025 HH010.COM

快速回复 返回顶部 返回列表