Hi!

I can't seem to get global user function calls to work from namespaces in the latest 5.3 snaps. This is on Win XP SP2 using Apache 2.2.8 and the php5apache2_2.dll. Example:


global_file.php
---------------
require 'namespace_file.php';
function globalFunc() {
    'Global Called!';
}
TestNS::callGlobalFunc();



namespace_file.php
------------------
namespace TestNS;
function callGlobalFunc() {
    ::globalFunc();
}


Tried this code (adding echo before 'Global Called!' so that it would
actually output something) - works just fine.
--
Stanislav Malyshev, Zend Software Architect
[EMAIL PROTECTED]   http://www.zend.com/
(408)253-8829   MSN: [EMAIL PROTECTED]


--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to