différence entre l'utilisation et l'exigence en 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