duanjia7607 2015-08-31 17:50
浏览 104
已采纳

为什么下划线转换为PSR-0中的目录分隔符?

I'm trying to figure out why would underscores in class names be converted to directory separators in PSR-0? I'm sure there is a reason for it, but I can't think of why.

If I have a class named my_class_name in the namespace amespace\subnamespace Wouldn't that then convert to amespace\subnamespace\my\class ame when what I want is amespace\subnamespace\my_class_name? I understand if my class system is built around this it would work, but if I wanted directory separators I would have just used a backslash instead of an underscore.

  • 写回答

1条回答 默认 最新

  • dsh84723 2015-08-31 18:01
    关注

    Because history. It was common prior to PHP gaining namespace support for projects to use underscore-separated bits for a sort of poor man's namespacing. There was enough of that still going on at the time PSR-0 was created to make it a practical decision.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?