Разница между использованием и требованием в PHP
Use require when the file is required by the application.
Use include when the file is not required and application should continue when file is not found.
Rich Rhinoceros