SommaireTelecharger la documentationChapitre suivantChapitre precedent  

  .: News :.: Edito :.: Scripts :.: Forum :.: Erreurs :.: Jobs :. 
 
Sommaire

Fonctions

call_user_func_array
call_user_func
create_function
func_get_arg
func_get_args
func_num_args
function_exists
get_defined_functions
register_shutdown_function
register_tick_function
unregister_tick_function

6.34.5 func_get_args

[ Exemples avec func_get_args ]   PHP 4 >= 4.0.0

Description

array func_get_args(void ... )

func_get_args retourne un tableau dont les éléments correspondent aux éléments de la liste d'arguments de la fonction. func_get_args générera une alerte si elle est appelée hors d'une fonction.


<?php
  
function foo() {
    
$numargs func_num_args();
    echo 
"Nombre d'arguments: $numargs<br>\n";
    if (
$numargs >= 2) {
    echo 
"Le second argument est: " func_get_arg (1) . "<br>\n";
    }
    
$arg_list func_get_args();
    for (
$i 0$i $numargs$i++) {
    echo 
"L'argument $i est: " $arg_list[$i] . "<br>\n";
    }
  }
  
foo(123);
?>

func_get_arg peut être utilisé conjointement à func_num_args et func_get_args pour permettre aux fonctions utilisateurs d'accepter un nombre variable d'arguments.

Note

func_get_arg a été ajoutée en PHP 4.


Chapitre précédentChapitre suivantAccueil nexen.net