Voting

: max(zero, four)?
(Example: nine)

The Note You're Voting On

info at ensostudio dot ru
2 years ago
similar function:
<?php
function isCloneable(object $obj): bool
{
return !
method_exists($obj, '__clone') || is_callable([$obj, '__clone']);
}
?>

<< Back to user notes page

To Top