方法一:使用function_exists判断
方法二:使用命名空间
namespace test; function test(){ echo 'test/test'; } namespace test1; function test(){ echo 'test1/test'; } namespace test3; use test; use test1; test\test(); test1\test();
方法一:使用function_exists判断
方法二:使用命名空间
namespace test; function test(){ echo 'test/test'; } namespace test1; function test(){ echo 'test1/test'; } namespace test3; use test; use test1; test\test(); test1\test();
文章来源: blog.csdn.net,作者:lxw1844912514,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/lxw1844912514/article/details/100028418
评论(0)