Answers for "php call function from another file class"

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
0

php call method from another class

$classA = new ClassA();
$name = $classA->getName();
echo $name;    //Prints John
Posted by: Guest on October-13-2020

Code answers related to "php call function from another file class"

Browse Popular Code Answers by Language