Hi, what are the main differences between require, require_once, include and include_once in PHP
views:
31answers:
1
+1
A:
include and include_once will accept missing scripts without throwing an error.
The _once ending ensures that the particular script is only run once for a single http request.
Gus
2010-09-14 14:45:10
lake of explanation.......
Muhammad Sajid
2010-09-14 15:22:37