Voting

: max(five, five)?
(Example: nine)

The Note You're Voting On

nicolas dot grekas+php at gmail dot com
14 years ago
class_alias also works for interfaces!

<?php
interface foo {}
class_alias('foo', 'bar');
echo
interface_exists('bar') ? 'yes!' : 'no'; // prints yes!
?>

<< Back to user notes page

To Top