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

 


 ПОДПИСКА

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




Returning values

Returning values

Values are returned by using the optional return statement. Any type may be returned, including lists and objects.


function square ($num) {
    return $num * $num;
}
echo square (4);   // outputs '16'.
     

You can't return multiple values from a function, but similar results can be obtained by returning a list.


function small_numbers() {
    return array (0, 1, 2);
}
list ($zero, $one, $two) = small_numbers();
     

To return a reference from a function, you have to use the reference operator & in both the function declaration and when assigning the return value to a variable:


function &returns_reference() {
    return &$someref;
}

$newref = &returns_reference();
     



With any suggestions or questions please feel free to contact us