×
Home About Us Products Services News Free Scripts Contact
news php scripts and software

PHP example - How to use call_user_func in PHP to call a function?


PHP - How to use call_user_func in PHP to call a function?

<?php
 
function SimpleTest($x)
{
 echo "Hallo ".$x;
}
 
call_user_func('SimpleTest',"netart");
?>

Category: PHP

 
<< Go back