Voting

: min(eight, seven)?
(Example: nine)

The Note You're Voting On

robsonvnasc at gmail dot com
8 years ago
It also works with Traits!

<?php
trait Foo {}
class_alias("Foo","Bar");
echo
trait_exists("Bar") ? 'yes' : 'no';
?>
//yes

<< Back to user notes page

To Top