📜  include 和 indlude 之间的区别 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:40.027000             🧑  作者: Mango

代码示例1
"There is only one difference between include() and include_once(). 
If the code from a file has been already included then it will not be included
again if we use include_once().
Means include_once() include the file only onceat a time."

include('filename');
include_once('filename');