include
语句include和require的区别是什么?

在失败的时候:include产生一个warning,而require直接产生错误中断;require在运行前载入;include在运行时载入;require_once和include_once可以避免重复包含同一文件。