Answers for "how to use functions in php file"

PHP
0

php function use

// Inherit $message
$example = function () use ($message) {
    var_dump($message);
};
$example();
Posted by: Guest on August-13-2021
0

phph call functions from other .php file

<?php
  include 'File1.php';
  echo myFunc(1,"Hello edureka"); 
?>
Posted by: Guest on September-06-2021

Code answers related to "how to use functions in php file"

Browse Popular Code Answers by Language