Voting

: three minus zero?
(Example: nine)

The Note You're Voting On

n0mAd at example dot com
7 years ago
If you need to register the function when using namespaces, use the __NAMESPACE__ constant to define the name.

<?php

namespace Foobar;

spl_autoload_register('MyFunction'); // incorrect
spl_autoload_register('\MyFunction');// incorrect
spl_autoload_register(__NAMESPACE__ . '\MyFunction'); // correct

?>

<< Back to user notes page

To Top