Both are used to includes files once. Means PHP will check if the file has already been included, and if so, not include (include) it again.
include _once() create warning if file not found and execute script.
require_once() create fatal error if file not found and terminate script.

Comments