func_get_arg

(PHP 4, PHP 5, PHP 7)

func_get_arg���ز����б��ijһ��

˵��

func_get_arg ( int $arg_num ) : mixed

���û��Զ��庯���IJ����б��л�ȡij��ָ���IJ�����

�ú���������� func_get_args() �� func_num_args() һ��ʹ�ã��Ӷ�ʹ���û��Զ��庯�����Խ����Զ�������IJ����б�

����

arg_num

������ƫ�����������IJ����Ǵ�0��ʼ�����ġ�

����ֵ

����ָ���IJ����������򷵻� 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 ��ʵ�ʴ���IJ�������Ŀ���ʱ��Ҳ�ᷢ��һ�����档

����

Example #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 (123);
?>

Example #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

Example #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'

ע��

Note:

��Ϊ���������ڵ�ǰ��������ȷ��������ϸ�ڣ������� 5.3.0 ��ǰ�İ汾�в������������IJ���������봫�ݴ�ֵʱ���ɽ��������һ��������Ȼ���ô˱������д��ݡ�

Note:

������������÷�ʽ���ݣ������Ըò������κθı佫�ں������غ�����

Note: 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