func_get_arg 返回参数列表的某一项
发表日期:2021-07-01 08:57:15 | 来源: | | 浏览(878) 分类:函数处理 函数
func_get_arg
(PHP 4, PHP 5, PHP 7, PHP 8)
func_get_arg — 返回参数列表的某一项
说明
$arg_num
): mixed从用户自定义函数的参数列表中获取某个指定的参数。
该函数可以配合 func_get_args() 和 func_num_args() 一起使用,从而使得用户自定义函数可以接受自定义个数的参数列表。
参数
-
arg_num
-
参数的偏移量。函数的参数是从0开始计数的。
返回值
返回指定的参数,错误则返回 false
。
更新日志
版本 | 说明 |
---|---|
5.3.0 | 该函数可以在参数列表中使用。 |
5.3.0 |
If this function is called from the outermost scope of a file
which has been included by calling include
or require from within a function in the
calling file, it now generates a warning and returns false .
(不知道如何翻译跟好,直接参考例2即可明白)
|
错误/异常
当在自定义函数的外面调用的该函数的时候会发出一个警告,
或者是当 arg_num
比实际传入的参数的数目大的时候也会发出一个警告。
范例
示例 #1 func_get_arg() 例子
<?php function foo(){ $numargs = func_num_args(); echo "Number of arguments: $numargs<br />\n"; if ($numargs >= 2) { echo "Second argument is: " . func_get_arg(1) . "<br />\n"; } } foo (1, 2, 3); ?>
示例 #2 func_get_arg() PHP 5.3 前后对比的例子
test.php<?php function foo() { include './fga.inc'; } foo('First arg', 'Second arg'); ?>fga.inc<?php$arg = func_get_arg(1); var_export($arg); ?>
PHP 5.3 版本之前的输出:
'Second arg'
PHP 5.3 和之后的版本的输出:
Warning: func_get_arg(): Called from the global scope - no function context in /home/torben/Desktop/code/ml/fga.inc on line 3 false
示例 #3 func_get_arg() example of byref and byval arguments
<?php function byVal($arg) { echo 'As passed : ', var_export(func_get_arg(0)), PHP_EOL; $arg = 'baz'; echo 'After change : ', var_export(func_get_arg(0)), PHP_EOL; } function byRef(&$arg) { echo 'As passed : ', var_export(func_get_arg(0)), PHP_EOL; $arg = 'baz'; echo 'After change : ', var_export(func_get_arg(0)), PHP_EOL; } $arg = 'bar'; byVal($arg); byRef($arg); ?>
以上例程会输出:
As passed : 'bar'
After change : 'bar'
As passed : 'bar'
After change : 'baz'
注释
注意:
因为函数依赖于当前作用域以确定参数的细节,所以在 5.3.0 以前的版本中不能用作函数的参数。如必须传递此值时,可将结果赋与一个变量,然后用此变量进行传递。
注意:
如果参数以引用方式传递,函数对该参数的任何改变将在函数返回后保留。As of PHP 7 the current values will also be returned if the arguments are passed by value.
注意: This function returns a copy of the passed arguments only, and does not account for default (non-passed) arguments.
参见
- func_get_args() - 返回一个包含函数参数列表的数组
- func_num_args() - Returns the number of arguments passed to the function
- PHP(0)
- PHP杂项(34)
- PHP基础-李炎恢系列课程(20)
- 中文函数手册(0)
- 错误处理 函数(13)
- OPcache 函数(6)
- PHP 选项/信息 函数(54)
- Zip 函数(10)
- Hash 函数(15)
- OpenSSL 函数(63)
- Date/Time 函数(51)
- 目录函数(9)
- Fileinfo 函数(6)
- iconv 函数(11)
- 文件系统函数(81)
- 多字节字符串 函数(57)
- GD 和图像处理 函数(114)
- 可交换图像信息(5)
- Math 函数(50)
- 程序执行函数(11)
- PCNTL 函数(23)
- JSON 函数(4)
- SPL 函数(15)
- URL 函数(10)
- cURL 函数(32)
- 网络 函数(33)
- FTP 函数(36)
- Session 函数(23)
- PCRE 函数(11)
- PCRE 正则语法(19)
- 数组 函数(81)
- 类/对象 函数(18)
- 函数处理 函数(13)
- call_user_func_array 调用回调函数,并把一个数组参数作为回调函数的参数(0)
- call_user_func 把第一个参数作为回调函数调用(0)
- create_function Create an anonymous (lambda-style) function(0)
- forward_static_call_array Call a static method and pass the arguments as array(0)
- forward_static_call Call a static method(0)
- func_get_arg 返回参数列表的某一项(0)
- func_get_args 返回一个包含函数参数列表的数组(0)
- func_num_args Returns the number of arguments passed to the function(0)
- function_exists 如果给定的函数已经被定义就返回 true(0)
- get_defined_functions 返回所有已定义函数的数组(0)
- register_shutdown_function 注册一个会在php中止时执行的函数(0)
- register_tick_function Register a function for execution on each tick(0)
- unregister_tick_function De-register a function for execution on each tick(0)
- 变量处理 函数(37)
- SimpleXML 函数(3)
- 杂项 函数(31)
- 字符串 函数(101)