PHP 8.5.0 Alpha 1 available for testing

Voting

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

The Note You're Voting On

programmer-comfreek at hotmail dot com
13 years ago
If you defined the class 'original' in a namespace, you will have to specify the namespace(s), too:
<?php
namespace ns1\ns2\ns3;

class
A {}

class_alias('ns1\ns2\ns3\A', 'B');
/* or if you want B to exist in ns1\ns2\ns3 */
class_alias('ns1\ns2\ns3\A', 'ns1\ns2\ns3\B');
?>

<< Back to user notes page

To Top