我已经搜索了最新的编码风格/标准,但大多数链接都是一两年前的,并且参考了这个链接Zend Coding Style。但是该链接适用于version 1.12
. 我唯一的一点是,现在大多数人都在以这种风格声明功能-
public function myfun ( ) {
....
....
}
在Zend
教程中是这样的-
public function myfun()
{
// all contents of function
// must be indented four spaces
}
我知道这不会影响功能及其对人的依赖,它只是遵循best/latest
实践,让我知道是否有任何相关链接与此相关,以遵循php
.