update : 2015.11.03
php.shukuma.com검색:
|
반환값선택적인 return문을 사용하여 값을 돌려준다. 배열이나 객체를 포함하여 모든 타입을 돌려줄수있다. 이 구문에서 함수의 수행이 즉시 중단되고 현재 함수를 호출한 코드줄로 제어를 되돌린다. 자세한 정보는 return섹션을 참고할것.
Use of return
Example #1 return의 사용예
<?php 함수는 여러 값을 반환할 수 없습니다. 그러나 배열을 반환하게 해서 비슷한 결과를 얻을 수 있습니다.
Example #2 여러 값을 취하기 위해 배열을 돌려줌
<?php 함수에서 참조를 돌려주기위해서는, 함수 선언부와 돌려주는 변수값을 지정하는 곳에서 참조 연산자 & 를 사용해야 한다.
Example #3 함수에서 참조 돌려주기
<?php 참조에 관한 자세한 정보는, 참조 표현섹션을 참고. Return type declarationsPHP 7 adds support for return type declarations. Similarly to argument type declarations, return type declarations specify the type of the value that will be returned from a function. The same types are available for return type declarations as are available for argument type declarations. Strict typing also has an effect on return type declarations. In the default weak mode, returned values will be coerced to the correct type if they are not already of that type. In strong mode, the returned value must be of the correct type, otherwise a TypeError will be thrown.
예제Example #4 Basic return type declaration
<?php 위 예제의 출력: float(3) Example #5 Strict mode in action
<?php 위 예제의 출력: int(3) Fatal error: Uncaught TypeError: Return value of sum() must be of the type integer, float returned in - on line 5 in -:5 Stack trace: #0 -(9): sum(1, 2.5) #1 {main} thrown in - on line 5 Example #6 Returning an object
<?php 위 예제의 출력: object(C)#1 (0) { } |