9个必须知道的实用PHP函数和功能

 我来答
大沈他次苹0B
2022-10-17 · TA获得超过7289个赞
知道大有可为答主
回答量:3059
采纳率:100%
帮助的人:173万
展开全部

  即使使用 PHP 多年 也会偶然发现一些未曾了解的函数和功能 其中有些是非常有用的 但没有得到充分利用 并不是所有人都会从头到尾一页一页地阅读手册和函数参考!

   任意参数数目的函数

  你可能已经知道 PHP 允许定义可选参数的函数 但也有完全允许任意数目的函数参数的方法 以下是可选参数的例子

  

   以下为引用的内容

  // function with optional arguments function foo($arg = $arg = ) {

  echo "arg : $arg n";  echo "arg : $arg n";

  }

  foo( hello world ); /* prints: arg : hello arg : world */

  foo(); /* prints: arg : arg : */

  现在让我们看看如何建立能够接受任何参数数目的函数 这一次需要使用 func_get_args() 函数

  

   以下为引用的内容

  // yes the argument list can be empty function foo() {

  // returns an array of all passed arguments  $args = func_get_args();

  foreach ($args as $k => $v) {   echo "arg" ($k+ ) ": $vn";  }

  }

  foo(); /* prints nothing */

  foo( hello ); /* prints arg : hello */

  foo( hello world again ); /* prints arg : hello arg : world arg : again */

   使用 Glob() 查找文件

  许多 PHP 函数具有长描述性的名称 然而可能会很难说出 glob() 函数能做的事情 除非你已经通过多次使用并熟悉了它 可以把它看作是比 scandir() 函数更强大的版本 可以按照某种模式搜索文件

  

   以下为引用的内容

  // get all php files $files = glob( * php );

  print_r($files); /* output looks like: Array (     [ ] => phptest php     [ ] => pi php     [ ] => post_output php     [ ] => test php ) */

  你可以像这样获得多个文件

  

   以下为引用的内容

  // get all php files AND txt files $files = glob( * {php txt} GLOB_BRACE);

lishixinzhi/Article/program/PHP/201311/21182

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式