gpt4 book ai didi

php - 如何在php中使用带有命名空间的类?

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

我尝试创建具有如下结构的应用程序:

App
+--src
Example.php
+--vendor
--
composer.json
composer.lock
index.php
其中 Example.php 设置 namespace Example然后在里面使用它 index.php .
但它不起作用。
例子.php
<?php namespace Example

class Example {
public function __construct()
{
echo 'constructed';
}
}
索引.php
<?php use Example\Example;

$example = new Example;

echo 'here ok';

但是当我在浏览器中运行它时,它的错误:
This page isn’t workinglocalhost is currently unable to handle this request.
我怎么了,有什么帮助吗?

最佳答案

由于您还没有发布您的 composer.json还包含,至少你必须在你的 autoload 中拥有它:

{
"autoload": {
"psr-4": {
"Example\\": "src"
}
}
}
在您的 index.php ,您需要从 Composer 要求自动加载:
require_once 'vendor/autoload.php'; // add the autoloader

use Example\Example;

$example = new Example;

echo 'here ok';
最后,您需要运行 composer 来反射(reflect)您的更改:
php composer dump-autoload

关于php - 如何在php中使用带有命名空间的类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63126696/

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