PHP namespace 关键字
示例
在 Html 命名空间中创建一个 Table 类
<?php
namespace Html;
class Table {
public $title = "";
public $numRows = 0;
public function message() {
echo "<p>Table '{$this->title}' has {$this->numRows} rows.</p>";
}
}
$table = new Table();
$table->title = "My table";
$table->numRows = 5;
?>
<!DOCTYPE html>
<html>
<body>
<?php
$table->message();
?>
</body>
</html>
自己试试 »
定义和使用
The namespace
关键字用于声明 PHP 文件运行的命名空间。命名空间防止了同名类之间的冲突,并且可以用于通过将相关类分组在一起的方式组织代码。
相关页面
在我们的 PHP 命名空间教程 中了解更多关于命名空间的信息。
❮ PHP 关键字