Answers for "php require file from other"

PHP
12

include and require in php

// Include a file, if it can't be found: continue.
<?php
include 'mainfile.php';
?>
  
// Alternatively: Require a file to be imported or quit if it can't be found
<?php
 require 'requiredfile.php';
?>
Posted by: Guest on April-25-2020
-1

php include file from file included before

require_once __DIR__ . '/include_two.php';
Posted by: Guest on August-31-2021

Browse Popular Code Answers by Language