douweng7083 2014-08-31 18:49
浏览 129
已采纳

Composer psr-0自动加载自定义命名空间不起作用

I have trouble adding my own namespaces to composer with PSR-0. I have read this and this but I still can't make it work

composer.json

{
"require": {
    "klein/klein": "2.0.x",
    "doctrine/orm": "2.4.4"

},
"autoload": {
    "psr-0": {
        "mynamespace":        "src/"
        }
}
}

The src folder is placed inside the same directory as composer.json

The src directory has the following structure

src
└── mynamespace
    ├── Keys.php

Keys.php

<?php
namespace mynamespace\Keys;

define ("API_KEY", "XXXXXXXXXXXX");
?>

index.php

use Klein\Klein;
use mynamespace\Keys;
require_once __DIR__ . '/vendor/autoload.php';

$klein = new Klein(); // works
echo API_KEY;  // Undefined constant
  • 写回答

1条回答 默认 最新

  • duanhan5230 2014-08-31 20:09
    关注

    You can only load classes, interfaces and traits with autoloading.

    Because all you do is add a use clause which does not do anything by itself with autoloading (i.e. it does not load something), and you do not use a class, nothing happens.

    I recommend using class constants. They may be put into classes or interfaces:

    namespace mynamespace;
    
    interface Keys {
        const API_KEY = 'XXXXXXXX';
    }
    
    use mynamespace/Keys;
    echo Keys::API_KEY;
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 链接问题 C++LNK2001 无法解析的外部符号
  • ¥50 安装pyaudiokits失败
  • ¥15 计组这些题应该咋做呀
  • ¥60 更换迈创SOL6M4AE卡的时候,驱动要重新装才能使用,怎么解决?
  • ¥15 让node服务器有自动加载文件的功能
  • ¥15 jmeter脚本回放有的是对的有的是错的
  • ¥15 r语言蛋白组学相关问题
  • ¥15 Python时间序列如何拟合疏系数模型
  • ¥15 求学软件的前人们指明方向🥺
  • ¥50 如何增强飞上天的树莓派的热点信号强度,以使得笔记本可以在地面实现远程桌面连接