What is an .inc and why use it?

后端 未结 8 708
伪装坚强ぢ
伪装坚强ぢ 2020-11-28 21:49

I often see examples in PHP that include.inc files. What is the meaning of .inc? What it is used for? What are the disadvantages and advantages of using it?

8条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-28 22:36

    It's just a way for the developer to be able to easily identify files which are meant to be used as includes. It's a popular convention. It does not have any special meaning to PHP, and won't change the behaviour of PHP or the script itself.

提交回复
热议问题