首页 > 开发 > PHP > 正文

PHP面向对象程序设计之命名空间与自动加载类详解

2024-05-04 22:50:39
字体:
来源:转载
供稿:网友

本文实例讲述了PHP面向对象程序设计之命名空间与自动加载类。分享给大家供大家参考,具体如下:

命名空间

避免类名重复,而产生错误。

<?phprequire_once "useful/Outputter.php";class Outputter {  // output data  private $name;  public function setName($name) {    $this->name = $name;  }  public function getName() {    return $this->name;  }}$obj = new Outputter(); // 同一命名空间下,类名不能相同,默认命名空间为空。空也是一种命名空间。$obj -> setName("Jack");print $obj->getName();//namespace useful; // 更改命名空间,否则查询不到Hello类,Fatal error: Class 'my/Hello' not found$hello = new Hello();?><?php// useful/Outputter.phpnamespace useful; // 命名空间class Outputter {  //}class Hello {}?>

如何调用命名空间中的类

<?phpnamespace com/getinstance/util;class Debug {  static function helloWorld() {    print "hello from Debug/n";  }}namespace main;// com/getinstance/util/Debug::helloWorld(); // 找不到Debug类/com/getinstance/util/Debug::helloWorld(); // 加斜杠之后,就从根部去寻找了。// outPut:hello from Debug?>

使用use关键字

<?phpnamespace com/getinstance/util;class Debug {  static function helloWorld() {    print "hello from Debug/n";  }}namespace main;use com/getinstance/util;//Debug::helloWorld(); //Fatal error: Class 'main/Debug' not foundutil/Debug::helloWorld();?>

使用下面的处理,直接可以调用类

<?phpnamespace com/getinstance/util;class Debug {  static function helloWorld() {    print "hello from Debug/n";  }}namespace main;use com/getinstance/util/Debug; // 直接使用到类Debug::helloWorld();?>

/表示全局

global.php

<?php// no namespaceclass Lister {  public static function helloWorld() {    print "hello from global/n";  }}?><?phpnamespace com/getinstance/util;require_once 'global.php';class Lister {  public static function helloWorld() {    print "hello from ".__NAMESPACE__."/n"; // __NAMESPACE__当前namespace  }}Lister::helloWorld(); // access local/Lister::helloWorld(); // access global?>

输出:

hello from com/getinstance/util
hello from global

命名空间加{}

<?phpnamespace com/getinstance/util {  class Debug {    static function helloWorld() {      print "hello from Debug/n";    }  }}namespace main {  /com/getinstance/util/Debug::helloWorld();}?>

output:

hello from Debug

全局命名空间

<?phpnamespace { // 全局空间  class Lister {    public static function helloWorld() {      print "hello from global/n";    }  }}namespace com/getinstance/util {  class Lister {    public static function helloWorld() {      print "hello from ".__NAMESPACE__."/n";    }  }  Lister::helloWorld(); // access local  /Lister::helloWorld(); // access global}?>            
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表