Online Documentation Server
 ПОИСК
ods.com.ua Web
 КАТЕГОРИИ
Home
Programming
Net technology
Unixes
Security
RFC, HOWTO
Web technology
Data bases
Other docs

 


 ПОДПИСКА

 О КОПИРАЙТАХ
Вся предоставленная на этом сервере информация собрана нами из разных источников. Если Вам кажется, что публикация каких-то документов нарушает чьи-либо авторские права, сообщите нам об этом.




Functions

Chapter 12. Functions

User-defined functions

A function may be defined using syntax such as the following:


function foo ($arg_1, $arg_2, ..., $arg_n) {
    echo "Example function.\n";
    return $retval;
}
     

Any valid PHP code may appear inside a function, even other functions and class definitions.

In PHP3, functions must be defined before they are referenced. No such requirement exists in PHP4.

PHP does not support function overloading, nor is it possible to undefine or redefine previously-declared functions.

PHP3 does not support variable numbers of arguments to functions, although default arguments are supported (see Default argument values for more information). PHP4 supports both: see Variable-length argument lists and the function references for func_num_args(), func_get_arg(), and func_get_args() for more information.



With any suggestions or questions please feel free to contact us