Answers for "php import another php file"

PHP
3

php import function from another file

File1.php :
<?php
  function first($int, $string){ //function parameters, two variables.
    return $string;  //returns the second argument passed into the function
  }
?>
  
File2.php :
<?php
  include 'File1.php';
  echo first(1,"omg lol"); //returns omg lol;
?>
Posted by: Guest on December-28-2020
3

require in php

// 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

Code answers related to "php import another php file"

Browse Popular Code Answers by Language