PHP include and require

Both include and require statements are used to include the entire text from one file into another, but they have a difference in behavior. The include statement will produce a warning if the file is not found, while the require statement will produce a fatal error.