Files
php_8/complicated_functions/is_callable.php
2022-05-10 22:29:05 +03:00

12 lines
163 B
PHP

<?php
$rand = 'rand';
$func = 'not_existed_function';
if(is_callable($rand)) { // true
echo $rand();
}
if(is_callable($func)) { // false
echo $func();
}