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
互联网应用开发
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
1 deletion
+20
-1
code-standard.md
code-standard.md
+20
-1
No files found.
code-standard.md
View page @
8f32d64e
...
...
@@ -21,4 +21,23 @@ $some_things = array(
'sex'=>'石头'
);
//单行注释
/*
多行
注释
*/
/**
* 我是整个函数的说明
* @param string $a 我是a的说明
* @param int $b 我是b的说明
* @return int $c
*/
function im_func($a, $b){
return $c;
}
```