Blogger Information
Blog 28
fans 0
comment 2
visits 52088
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
开发前准备
耶和华信徒的博客
Original
493 people have browsed it

开发前准备

一、所有格式化时间的参数字符串统一定义

  1. 格式化时间字符串的大小写会导致格式输出不统一;
  2. 多种格式的时间规定需要统一;

二、代码规约

1.尽量的少写else
  1. 多个if可以做到的事情,尽量不去写else去实现,如果嵌套层数较多后,会使代码排查错误难度增加,尽量的不写else 代码结构清晰;超过三层的if else 会使代码结构过度复杂化。
  1. if(lenght < 0){
  2. return '输入数值太小';
  3. }
  4. if(max > 100){
  5. return '输入数值太大';
  6. }
  7. if(gettype($param) == 'string'){
  8. return '输入类型错误';
  9. }
  10. //其他业务代码
  11. return true
  12. /** * * * * * 以上代码就会变成 * * * * * **/
  13. if(lenght < 0){
  14. return '输入数值太小';
  15. }else{
  16. if(max > 100){
  17. return '输入数值太大';
  18. }else{
  19. if(gettype($param) == 'string'){
  20. return '输入类型错误';
  21. }else{
  22. //其他业务代码
  23. return true
  24. }
  25. }
  26. }
2.赋值语句不与其他控制语句混写
3.判断语句中,尽量不去取反;

三、高并发场景下,控制语句规约

1.严禁使用“==”去做判断
  1. 容易发生“击穿”超卖的情况如果小于这个库存数;将会无法弥补,补救;造成后果严重;

参考地址:http://blog.itmin.cn/content/26

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post