ConFoo Montreal 2026: Call for Papers

Voting

: zero plus zero?
(Example: nine)

The Note You're Voting On

scott at intothewild dot ca
16 years ago
as noted by guilhermeblanco at php dot net,

<?php

// fact.php

namespace foo;

class
fact {

public function
create($class) {
return new
$class();
}
}

?>

<?php

// bar.php

namespace foo;

class
bar {
...
}

?>

<?php

// index.php

namespace foo;

include(
'fact.php');

$foofact = new fact();
$bar = $foofact->create('bar'); // attempts to create \bar
// even though foofact and
// bar reside in \foo

?>

<< Back to user notes page

To Top