Why is underscore converted to directory separator in the PSR-0 standard?

落花浮王杯 提交于 2020-01-24 04:17:26

问题


The PSR-0 (https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-0.md) standard specifies that an underscore in the class name should be converted to a directory separator in the corresponding file name.

To me this does not seem to be a good idea as it creates lots of errors when someone who does not know the standard innocently uses an underscore in the class name and suddenly the autoloader cannot find the class and all sort of weird errors appear (see this stackoverflow issue for example: Symfony2.1 mapping error: class_parents())

So I guess there must be some kind of reason (historical compatibility with some library?) for this "feature". My question is: does anyone know why this was introduced in the PSR-0 standard?


回答1:


Underscores were used in the times that PHP didn't yet support namespaces. A "correct" organized project follows the convention of namespacing the files the same way as the directory structure.

It is just some general "rule" to organize files in a project.

So if you have a directory structure of:

root
  Name
    Package
      MyClass.php

People used to do:

class Name_Package_MyClass {}

But now that we have namespaces it becomes:

namespace Name\Package;

class MyClass { }

It is just coding style guideline which ensures that everybody does the same thing.

So what PSR-0 does is map both the old and the new style of namespacing to a filename.




回答2:


PHP supports namespaces since version 5.3, earlier the most common convention was to use underscore as namespace (directory) separator, e.g.: My_Project_ClassName was mapped as /path/to/my/My/Project/ClassName. I believe that backwards compatibility is the main reason.




回答3:


Keep in mind that the PSR-0 standard was written for a few specific projects and not necessarily the best option for your own project. As it says on their site: "If other folks want to adopt what we’re doing they are welcome to do so, but that is not the aim." PSR-0 is very restrictive, I wouldn't choose to use it just because other people are. Consider what you actually want from your project and whether it will be beneficial for you.



来源:https://stackoverflow.com/questions/11696219/why-is-underscore-converted-to-directory-separator-in-the-psr-0-standard

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!