require_once

Example

 require_once( string $file ) 

Description

The require_once() statement is identical to require() except PHP will check if the file has already been included, and if so, not include (require) it again.

Return Values

The return value of the included file, if any.