Here is the code
<?php
Class Directory {
function Directory() { echo "test"; }
}
$a = new Directory; ?>
When i execute this i get
Fatal error: Cannot redeclare class directory
Is directory name for class somehow registered so i can' use it.
Yes
That must surely win the prize for "most concise reply whilst still answering the question"
Good job!