gpt4 book ai didi

php - php中的命名空间不起作用

转载 作者:行者123 更新时间:2023-12-04 16:04:18 25 4
gpt4 key购买 nike

我最近在官方网站上学习了如何使用命名空间。但是,它对我不起作用。

我在下面创建了 2 个文件进行测试。

例子/ExampleClass.php

<?php  
namespace Example;

class ExampleClass {

public function __construct(){
echo 'Example Class is used by namespace';
}
}

ma​​in.php

<?php 
use Example\ExampleClass as ExampleClass;

$example_class = new ExampleClass;

当我遵守时,我得到了

This page isn’t working localhost is currently unable to handle this request. HTTP ERROR 500

这可能是个愚蠢的问题,但代码有什么问题?

最佳答案

您在 main.php 脚本中缺少 includerequire:

include_once('Example/ExampleClass.php');

use doesn't include anything. It just imports the specified namespace (or class) to the current scope if they are before included

关于php - php中的命名空间不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49355829/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com