0 votes
in PHP by
Differentiate between require and include in PHP?

1 Answer

0 votes
by

Require and include both are used to include a file, but if data is not found include sends warning whereas require sends Fatal error.

...