Skip to content

Instantly share code, notes, and snippets.

@thedineshj
Created November 27, 2018 11:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thedineshj/d473836275943daca15d43f86f0589af to your computer and use it in GitHub Desktop.
Save thedineshj/d473836275943daca15d43f86f0589af to your computer and use it in GitHub Desktop.
calling a php function with paramters using call_user_func.php
<?php
function sayHello($name){
echo "Hello {$name}";
}
call_user_func("sayHello","John"); // Hello John
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment