Answers for "require_once php"

PHP
1

php requuire once

require_once('var.php');
Posted by: Guest on March-27-2020
1

require_once php

// Require_once is ignored if the required file has already been added by any of the include statements.
<?php
 require_once 'require_oncefile.php';
?>
Posted by: Guest on April-25-2020
0

php require_once

define('__ROOT__', dirname(dirname(__FILE__)));
require_once(__ROOT__.'whatever');
Posted by: Guest on February-07-2021
0

require_once different on server

define('__ROOT__', dirname(dirname(__FILE__))); //call define untill you get to the root directory
require_once (__ROOT__."/Path/To/File.php"); //append __ROOT__ to the string
Posted by: Guest on August-11-2020

Browse Popular Code Answers by Language