- var_dump: documentation ( source)
<?php
class Alice {
protected const FOO = 'BLAH';
}
class Wonderland extends Alice {
protected const FOO = 'bar';
}
var_dump(Wonderland::FOO);
class Cat {
protected final const FOO = 'bar';
}
class Chesire extends Cat {
protected const BAZ = 'too';
}