Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <body> <?php function test1(){ } echo "test1 est appelable : " . is_callable("test1"); echo "<br>"; echo "test2 est appelable : " . is_callable("test2"); ?> </body> </html>
test1 is callable: 1
test2 is callable: