What is the difference between these PHP include statements?

Posted by Karandeep Singh on Stack Overflow See other posts from Stack Overflow or by Karandeep Singh
Published on 2010-06-05T04:59:41Z Indexed on 2010/06/05 14:12 UTC
Read the original article Hit count: 234

Filed under:
|
|
|
|
  1. include("somefile.php");
  2. include_once("somefile.php");
  3. require("somefile.php");
  4. require_once("somefile.php");

What is the difference between these?

© Stack Overflow or respective owner

Related posts about php

Related posts about script