Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

Knut Urdalen's Blog:
The return value of include
Nov 28, 2008 @ 16:33:57

In a new entry Knut Urdalen looks at something that some PHP developers might have forgotten about - the return value of the include statement.

PHP never stops surprising me. I just found out that you’re able to return values from the inclusion statements (require, require_once, include and include_once) through an example of Zend_Config.

His example puts an array of values inside the include file with a return statement. This script is included from another and, because of the return, the array data is passed back out into a waiting variable set equal to the include statement.

tagged: include return value array zendconfig example

Link:


Trending Topics: