laravel - 规范的php类库命名应该是什么样子的?

WBOY
Release: 2016-07-06 13:53:31
Original
1114 people have browsed it

我看过有很多开源项目是class.类名.php这种形式,但也看过很多框架内部是类名.class.php,这个class的位置究竟放哪比较合适啊?

我个人比较推崇.class.php的形式,因为这样在一些框架中导入第三方类库指定类库后缀可以直接指定为.class.php

回复内容:

我看过有很多开源项目是class.类名.php这种形式,但也看过很多框架内部是类名.class.php,这个class的位置究竟放哪比较合适啊?

我个人比较推崇.class.php的形式,因为这样在一些框架中导入第三方类库指定类库后缀可以直接指定为.class.php

  • *.config.php

  • *.function.php

  • *.class.php

以上适合小型代码使用,所有东西都丢一个目录里面。
如果不是得话,则不需要这样的文件名。

推荐了解下php的psr-4: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-4-autoloader.md

这都是使用习惯的问题,还是按照 PSR-4 来写比较好,毕竟有 composer 自动帮你生成命名空间与源文件的映射关系,用起来很方便

我个人觉得如果是php的文件
那就php结尾就好了
没必要区分什么 类文件 配置文件 函数文件
如果要看的话, 最好看看http://packagist.org/上边的项目
应该都是php结尾的!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!