90 php 命名空间
程序员文章站
2022-04-29 09:47:35
...
1.如果不加命名空间
test1.php
test1.php
functiontest()
{echo'test1';
}
test2.php
functiontest()
{echo'test2';
}
test.php
require'test1.php';
require'test2.php';
报错:
2.加了命名空间
test1.php
namespaceTest1;
functiontest()
{echo'test1';
}
test2.php
namespaceTest2;
functiontest()
{echo'test2';
}
test.php
require'test1.php';
require'test2.php';
Test1\test();
echo'
*************
';
Test2\test();
').addClass('pre-numbering').hide();
$(this).addClass('has-numbering').parent().append($numbering);
for (i = 1; i ').text(i));
};
$numbering.fadeIn(1700);
});
});
以上就介绍了90 php 命名空间,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。