Câu hỏi phỏng vấn PHP
Câu hỏi

Maximum how many arguments are allowed in a function in PHP?

Câu trả lời

In PHP, there is no explicit limit on the number of arguments that a function can accept. Theoretically, you can pass as many arguments as you need to a function. However, practical limitations are imposed by the memory and performance constraints of your system.

Here's an example of a PHP function with multiple arguments:

php Copy
function exampleFunction($arg1, $arg2, $arg3, $arg4, $arg5) {
    // Function body
}

In practice, it's advisable to keep the number of arguments manageable for readability and maintainability. If ...

middle

middle

Gợi ý câu hỏi phỏng vấn

middle

Explain the difference between shell_exec() and exec()

entry

What are the keys & values in an indexed array?

middle

What exactly is the the difference between array_map , array_walk and array_filter ?

Bình luận

Chưa có bình luận nào

Chưa có bình luận nào