Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
互联网应用开发
wiki-php
Wiki
code standard
code standard
· Changes
Page history
wangqs created page: code standard
authored
Jun 13, 2016
by
互联网应用开发
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
0 deletions
+24
-0
code-standard.md
code-standard.md
+24
-0
No files found.
code-standard.md
0 → 100644
View page @
834fae5a
#### 风格要求
```
//下划线风格,操作符两边空格,字符串单引号
$user_name = '王小名';
```
```
//函数 //大括号 , 参数列表空格
function eat_meat($type, $how_much) {
}
```
```
//数组风格
$some_things = array(
'name'=>'小小',
'sex'=>'石头'
);
```
\ No newline at end of file