Home >> PHP >> fun_num_args() function in PHP

fun_num_args() function in PHP

Returns the number of arguments passed to the function.

Example-

function countArguments(){
    $numargs = func_num_args();
    echo "Number of arguments: $numargs\n";
}

echo countArguments(1, 2, 3);

Output

3

Post Your Comment

Next Questions
ereg_replace() function
ereg_ireplace() function
preg_match() function
preg_replace() function
File handling
fopen() function
fclose() function
fread() function
create the file
Check the file is available or not
Destroy the file
Write into the file
Create into folder
Remove a folder
touch() function
file_exits() function
unlink() function
fwrite() function
mkdir() function
rmdir() function
is_dir() function
file_get_contents() function
fgets() function
basename() function
chgrp() function

Copyright ©2022 coderraj.com. All Rights Reserved.