91 php 命名空间1
程序员文章站
2022-06-09 23:36:00
...
1.使用命名空间:基础
namespaceFoo;
functionstrlen() {echo'hello';
}
const INI_ALL = 3;
classException {}
$a = strlen('hi'); // 调用命名空间 Foo 的strlen()$aa = \strlen('hi');//调用全局函数strlen$b = \INI_ALL; // 访问全局常量 INI_ALL$c = new \Exception('error'); // 实例化全局类 Exceptionecho$a . '
';
echo$aa . '
';
echo$b . '
';
echo$c . '
';
').addClass('pre-numbering').hide();
$(this).addClass('has-numbering').parent().append($numbering);
for (i = 1; i ').text(i));
};
$numbering.fadeIn(1700);
});
});
以上就介绍了91 php 命名空间1,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
上一篇: IMU模式下DML语句所产生的REDORECORD格式解读
下一篇: php chgrp() 函数