require() function include and evaluate the specific file.
Use require() if you want a missing file to halt the processing of the page.
Note: include() does not behave this way, the script will continue regardless.
Sample:
<?php
require 'prepend.php';
require
$somefile;
require (
'somefile.txt');
?>