PHP 8.5.0 Alpha 2 available for testing

Voting

: min(nine, three)?
(Example: nine)

The Note You're Voting On

Anonymous
15 years ago
If you want to check whether you're dealing with a closure specifically and not a string or array callback you can do this:

<?php
$isAClosure
= is_callable($thing) && is_object($thing);
?>

<< Back to user notes page

To Top