forked from php-cpm/clean-code-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.md
2173 lines (1640 loc) · 49.2 KB
/
README.md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Clean Code PHP
## 目录
1. [介绍](#介绍)
2. [变量](#变量)
* [使用见字知意的变量名](#使用见字知意的变量名)
* [同一个实体要用相同的变量名](#同一个实体要用相同的变量名)
* [使用便于搜索的名称 (part 1)](#使用便于搜索的名称-part-1)
* [使用便于搜索的名称 (part 2)](#使用便于搜索的名称-part-2)
* [使用自解释型变量](#使用自解释型变量)
* [避免深层嵌套,尽早返回 (part 1)](#避免深层嵌套尽早返回-part-1)
* [避免深层嵌套,尽早返回 (part 2)](#避免深层嵌套尽早返回-part-2)
* [少用无意义的变量名](#少用无意义的变量名)
* [不要添加不必要上下文](#不要添加不必要上下文) 3. [表达式](#表达式)
* [使用恒等式](#使用恒等式)
* [Null合并运算符](#null合并运算符)
4. [函数](#函数)
* [合理使用参数默认值,没必要在方法里再做默认值检测](#合理使用参数默认值没必要在方法里再做默认值检测)
* [函数参数(最好少于2个)](#函数参数-最好少于2个)
* [函数应该只做一件事](#函数应该只做一件事)
* [函数名应体现他做了什么事](#函数名应体现他做了什么事)
* [函数里应当只有一层抽象abstraction](#函数里应当只有一层抽象abstraction)
* [不要用flag作为函数的参数](#不要用flag作为函数的参数)
* [避免副作用](#避免副作用)
* [不要写全局函数](#不要写全局函数)
* [不要使用单例模式](#不要使用单例模式)
* [封装条件语句](#封装条件语句)
* [避免用反义条件判断](#避免用反义条件判断)
* [避免条件判断](#避免条件判断)
* [避免类型检查 (part 1)](#避免类型检查-part-1)
* [避免类型检查 (part 2)](#避免类型检查-part-2)
* [移除僵尸代码](#移除僵尸代码)
5. [对象和数据结构 Objects and Data Structures](#对象和数据结构)
* [使用 getters 和 setters Use object encapsulation](#使用-getters-和-setters)
* [给对象使用私有或受保护的成员变量](#给对象使用私有或受保护的成员变量)
6. [类](#类)
* [少用继承多用组合](#少用继承多用组合)
* [避免连贯接口](#避免连贯接口)
* [推荐使用 final 类](#推荐使用-final-类)
7. [类的SOLID原则 SOLID](#solid)
* [S: 单一职责原则 Single Responsibility Principle (SRP)](#单一职责原则)
* [O: 开闭原则 Open/Closed Principle (OCP)](#开闭原则)
* [L: 里氏替换原则 Liskov Substitution Principle (LSP)](#里氏替换原则)
* [I: 接口隔离原则 Interface Segregation Principle (ISP)](#接口隔离原则)
* [D: 依赖倒置原则 Dependency Inversion Principle (DIP)](#依赖倒置原则)
8. [别写重复代码 (DRY)](#别写重复代码-dry)
9. [翻译](#翻译)
## 介绍
本文参考自 Robert C. Martin的[*Clean Code*](https://www.amazon.com/Clean-Code-Handbook-Software-Craftsmanship/dp/0132350882) 书中的软件工程师的原则
,适用于PHP。 这不是风格指南。 这是一个关于开发可读、可复用并且可重构的PHP软件指南。
并不是这里所有的原则都得遵循,甚至很少的能被普遍接受。 这些虽然只是指导,但是都是*Clean Code*作者多年总结出来的。
本文受到 [clean-code-javascript](https://github.com/ryanmcdermott/clean-code-javascript) 的启发
虽然很多开发者还在使用PHP5,但是本文中的大部分示例的运行环境需要PHP 7.1+。
## 翻译说明
翻译完成度100%,最后更新时间2020-10-26。本文由 php-cpm 基于 [yangweijie版本](https://github.com/yangweijie/clean-code-php) 的[clean-code-php](https://github.com/jupeter/clean-code-php)翻译并同步大量原文内容。
原文更新频率较高,我的翻译方法是直接用文本比较工具逐行对比。优先保证文字内容是最新的,再逐步提升翻译质量。
阅读过程中如果遇到各种链接失效、内容老旧、术语使用错误和其他翻译错误等问题,欢迎大家积极提交PR。
## **变量**
### 使用见字知意的变量名
**坏:**
```php
$ymdstr = $moment->format('y-m-d');
```
**好:**
```php
$currentDate = $moment->format('y-m-d');
```
**[⬆ 返回顶部](#目录)**
### 同一个实体要用相同的变量名
**坏:**
```php
getUserInfo();
getUserData();
getUserRecord();
getUserProfile();
```
**好:**
```php
getUser();
```
**[⬆ 返回顶部](#目录)**
### 使用便于搜索的名称 (part 1)
写代码是用来读的。所以写出可读性高、便于搜索的代码至关重要。
命名变量时如果没有有意义、不好理解,那就是在伤害读者。
请让你的代码便于搜索。
**坏:**
```php
// 448 ™ 干啥的?
$result = $serializer->serialize($data, 448);
```
**好:**
```php
$json = $serializer->serialize($data, JSON_UNESCAPED_SLASHES | JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE);
```
### 使用便于搜索的名称 (part 2)
**坏:**
```php
class User
{
// 7 ™ 干啥的?
public $access = 7;
}
// 4 ™ 干啥的?
if ($user->access & 4) {
// ...
}
// 这里会发生什么?
$user->access ^= 2;
```
**好:**
```php
class User
{
public const ACCESS_READ = 1;
public const ACCESS_CREATE = 2;
public const ACCESS_UPDATE = 4;
public const ACCESS_DELETE = 8;
// 默认情况下用户 具有读、写和更新权限
public $access = self::ACCESS_READ | self::ACCESS_CREATE | self::ACCESS_UPDATE;
}
if ($user->access & User::ACCESS_UPDATE) {
// do edit ...
}
// 禁用创建权限
$user->access ^= User::ACCESS_CREATE;
```
**[⬆ 返回顶部](#目录)**
### 使用自解释型变量
**坏:**
```php
$address = 'One Infinite Loop, Cupertino 95014';
$cityZipCodeRegex = '/^[^,]+,\s*(.+?)\s*(\d{5})$/';
preg_match($cityZipCodeRegex, $address, $matches);
saveCityZipCode($matches[1], $matches[2]);
```
**不错:**
好一些,但强依赖于正则表达式的熟悉程度
```php
$address = 'One Infinite Loop, Cupertino 95014';
$cityZipCodeRegex = '/^[^,]+,\s*(.+?)\s*(\d{5})$/';
preg_match($cityZipCodeRegex, $address, $matches);
[, $city, $zipCode] = $matches;
saveCityZipCode($city, $zipCode);
```
**好:**
使用带名字的子规则,不用懂正则也能看的懂
```php
$address = 'One Infinite Loop, Cupertino 95014';
$cityZipCodeRegex = '/^[^,]+,\s*(?<city>.+?)\s*(?<zipCode>\d{5})$/';
preg_match($cityZipCodeRegex, $address, $matches);
saveCityZipCode($matches['city'], $matches['zipCode']);
```
**[⬆ 返回顶部](#目录)**
### 避免深层嵌套,尽早返回 (part 1)
太多的if else语句通常会导致你的代码难以阅读,直白优于隐晦
**糟糕:**
```php
function isShopOpen($day): bool
{
if ($day) {
if (is_string($day)) {
$day = strtolower($day);
if ($day === 'friday') {
return true;
} elseif ($day === 'saturday') {
return true;
} elseif ($day === 'sunday') {
return true;
}
return false;
}
return false;
}
return false;
}
```
**好:**
```php
function isShopOpen(string $day): bool
{
if (empty($day)) {
return false;
}
$openingDays = ['friday', 'saturday', 'sunday'];
return in_array(strtolower($day), $openingDays, true);
}
```
**[⬆ 返回顶部](#目录)**
### 避免深层嵌套,尽早返回 (part 2)
**糟糕的:**
```php
function fibonacci(int $n)
{
if ($n < 50) {
if ($n !== 0) {
if ($n !== 1) {
return fibonacci($n - 1) + fibonacci($n - 2);
}
return 1;
}
return 0;
}
return 'Not supported';
}
```
**好:**
```php
function fibonacci(int $n): int
{
if ($n === 0 || $n === 1) {
return $n;
}
if ($n >= 50) {
throw new Exception('Not supported');
}
return fibonacci($n - 1) + fibonacci($n - 2);
}
```
**[⬆ 返回顶部](#目录)**
### 少用无意义的变量名
别让读你的代码的人猜你写的变量是什么意思。
写清楚好过模糊不清。
**坏:**
```php
$l = ['Austin', 'New York', 'San Francisco'];
for ($i = 0; $i < count($l); $i++) {
$li = $l[$i];
doStuff();
doSomeOtherStuff();
// ...
// ...
// ...
// 等等, `$li` 又代表什么?
dispatch($li);
}
```
**好:**
```php
$locations = ['Austin', 'New York', 'San Francisco'];
foreach ($locations as $location) {
doStuff();
doSomeOtherStuff();
// ...
// ...
// ...
dispatch($location);
}
```
**[⬆ 返回顶部](#目录)**
### 不要添加不必要上下文
如果从你的类名、对象名已经可以得知一些信息,就别再在变量名里重复。
**坏:**
```php
class Car
{
public $carMake;
public $carModel;
public $carColor;
//...
}
```
**好:**
```php
class Car
{
public $make;
public $model;
public $color;
//...
}
```
**[⬆ 返回顶部](#目录)**
## 表达式
### [使用恒等式](http://php.net/manual/en/language.operators.comparison.php)
**不好:**
简易对比会将字符串转为整形
```php
$a = '42';
$b = 42;
if ($a != $b) {
//这里始终执行不到
}
```
对比 $a != $b 返回了 `FALSE` 但应该返回 `TRUE` !
字符串 '42' 跟整数 42 不相等
**好:**
使用恒等判断检查类型和数据
```php
$a = '42';
$b = 42;
if ($a !== $b) {
// The expression is verified
}
```
The comparison `$a !== $b` returns `TRUE`.
**[⬆ 返回顶部](#目录)**
### Null合并运算符
Null合并运算符是 [PHP 7新特性](https://www.php.net/manual/en/migration70.new-features.php). Null合并运算符 `??` 是用来简化判断`isset()`的语法糖。如果第一个操作数存在且不为`null`则返回;否则返回第二个操作数。
**不好:**
```php
if (isset($_GET['name'])) {
$name = $_GET['name'];
} elseif (isset($_POST['name'])) {
$name = $_POST['name'];
} else {
$name = 'nobody';
}
```
**好:**
```php
$name = $_GET['name'] ?? $_POST['name'] ?? 'nobody';
```
**[⬆ 返回顶部](#目录)**
## 函数
### 合理使用参数默认值,没必要在方法里再做默认值检测
**不好:**
不好,`$breweryName` 可能为 `NULL`.
```php
function createMicrobrewery($breweryName = 'Hipster Brew Co.'): void
{
// ...
}
```
**还行:**
比上一个好理解一些,但最好能控制变量的值
```php
function createMicrobrewery($name = null): void
{
$breweryName = $name ?: 'Hipster Brew Co.';
// ...
}
```
**好:**
如果你的程序只支持 PHP 7+, 那你可以用 [type hinting](http://php.net/manual/en/functions.arguments.php#functions.arguments.type-declaration) 保证变量 `$breweryName` 不是 `NULL`.
```php
function createMicrobrewery(string $breweryName = 'Hipster Brew Co.'): void
{
// ...
}
```
**[⬆ 返回顶部](#目录)**
### 函数参数(最好少于2个)
限制函数参数个数极其重要,这样测试你的函数容易点。有超过3个可选参数参数导致一个爆炸式组合增长,你会有成吨独立参数情形要测试。
无参数是理想情况。1个或2个都可以,最好避免3个。再多就需要加固了。通常如果你的函数有超过两个参数,说明他要处理的事太多了。 如果必须要传入很多数据,建议封装一个高级别对象作为参数。
**坏:**
```php
class Questionnaire
{
public function __construct(
string $firstname,
string $lastname,
string $patronymic,
string $region,
string $district,
string $city,
string $phone,
string $email
) {
// ...
}
}
```
**好:**
```php
class Name
{
private $firstname;
private $lastname;
private $patronymic;
public function __construct(string $firstname, string $lastname, string $patronymic)
{
$this->firstname = $firstname;
$this->lastname = $lastname;
$this->patronymic = $patronymic;
}
// getters ...
}
class City
{
private $region;
private $district;
private $city;
public function __construct(string $region, string $district, string $city)
{
$this->region = $region;
$this->district = $district;
$this->city = $city;
}
// getters ...
}
class Contact
{
private $phone;
private $email;
public function __construct(string $phone, string $email)
{
$this->phone = $phone;
$this->email = $email;
}
// getters ...
}
class Questionnaire
{
public function __construct(Name $name, City $city, Contact $contact)
{
// ...
}
}
```
**[⬆ 返回顶部](#目录)**
### 函数名应体现他做了什么事
**坏:**
```php
class Email
{
//...
public function handle(): void
{
mail($this->to, $this->subject, $this->body);
}
}
$message = new Email(...);
// 啥?handle处理一个消息干嘛了?是往一个文件里写吗?
$message->handle();
```
**好:**
```php
class Email
{
//...
public function send(): void
{
mail($this->to, $this->subject, $this->body);
}
}
$message = new Email(...);
// 简单明了
$message->send();
```
**[⬆ 返回顶部](#目录)**
### 函数里应当只有一层抽象abstraction
当你抽象层次过多时时,函数处理的事情太多了。需要拆分功能来提高可重用性和易用性,以便简化测试。
(译者注:这里从示例代码看应该是指嵌套过多)
**坏:**
```php
function parseBetterPHPAlternative(string $code): void
{
$regexes = [
// ...
];
$statements = explode(' ', $code);
$tokens = [];
foreach ($regexes as $regex) {
foreach ($statements as $statement) {
// ...
}
}
$ast = [];
foreach ($tokens as $token) {
// lex...
}
foreach ($ast as $node) {
// parse...
}
}
```
**坏:**
我们把一些方法从循环中提取出来,但是`parseBetterJSAlternative()`方法还是很复杂,而且不利于测试。
```php
function tokenize(string $code): array
{
$regexes = [
// ...
];
$statements = explode(' ', $code);
$tokens = [];
foreach ($regexes as $regex) {
foreach ($statements as $statement) {
$tokens[] = /* ... */;
}
}
return $tokens;
}
function lexer(array $tokens): array
{
$ast = [];
foreach ($tokens as $token) {
$ast[] = /* ... */;
}
return $ast;
}
function parseBetterPHPAlternative(string $code): void
{
$tokens = tokenize($code);
$ast = lexer($tokens);
foreach ($ast as $node) {
// 解析逻辑...
}
}
```
**好:**
最好的解决方案是把 `parseBetterPHPAlternative()`方法的依赖移除。
```php
class Tokenizer
{
public function tokenize(string $code): array
{
$regexes = [
// ...
];
$statements = explode(' ', $code);
$tokens = [];
foreach ($regexes as $regex) {
foreach ($statements as $statement) {
$tokens[] = /* ... */;
}
}
return $tokens;
}
}
class Lexer
{
public function lexify(array $tokens): array
{
$ast = [];
foreach ($tokens as $token) {
$ast[] = /* ... */;
}
return $ast;
}
}
class BetterPHPAlternative
{
private $tokenizer;
private $lexer;
public function __construct(Tokenizer $tokenizer, Lexer $lexer)
{
$this->tokenizer = $tokenizer;
$this->lexer = $lexer;
}
public function parse(string $code): void
{
$tokens = $this->tokenizer->tokenize($code);
$ast = $this->lexer->lexify($tokens);
foreach ($ast as $node) {
// 解析逻辑...
}
}
}
```
**[⬆ 返回顶部](#目录)**
### 不要用flag作为函数的参数
flag就是在告诉大家,这个方法里处理很多事。前面刚说过,一个函数应当只做一件事。 把不同flag的代码拆分到多个函数里。
**坏:**
```php
function createFile(string $name, bool $temp = false): void
{
if ($temp) {
touch('./temp/' . $name);
} else {
touch($name);
}
}
```
**好:**
```php
function createFile(string $name): void
{
touch($name);
}
function createTempFile(string $name): void
{
touch('./temp/' . $name);
}
```
**[⬆ 返回顶部](#目录)**
### 避免副作用
一个函数做了比获取一个值然后返回另外一个值或值们会产生副作用如果。副作用可能是写入一个文件,修改某些全局变量或者偶然的把你全部的钱给了陌生人。
现在,你的确需要在一个程序或者场合里要有副作用,像之前的例子,你也许需要写一个文件。你想要做的是把你做这些的地方集中起来。不要用几个函数和类来写入一个特定的文件。用一个服务来做它,一个只有一个。
重点是避免常见陷阱比如对象间共享无结构的数据,使用可以写入任何的可变数据类型,不集中处理副作用发生的地方。如果你做了这些你就会比大多数程序员快乐。
**坏:**
```php
// Global variable referenced by following function.
// If we had another function that used this name, now it'd be an array and it could break it.
$name = 'Ryan McDermott';
function splitIntoFirstAndLastName(): void
{
global $name;
$name = explode(' ', $name);
}
splitIntoFirstAndLastName();
var_dump($name);
// ['Ryan', 'McDermott'];
```
**好:**
```php
function splitIntoFirstAndLastName(string $name): array
{
return explode(' ', $name);
}
$name = 'Ryan McDermott';
$newName = splitIntoFirstAndLastName($name);
var_dump($name);
// 'Ryan McDermott';
var_dump($newName);
// ['Ryan', 'McDermott'];
```
**[⬆ 返回顶部](#目录)**
### 不要写全局函数
在大多数语言中污染全局变量是一个坏的实践,因为你可能和其他类库冲突
并且调用你api的人直到他们捕获异常才知道踩坑了。让我们思考一种场景:
如果你想配置一个数组,你可能会写一个全局函数`config()`,但是他可能
和试着做同样事的其他类库冲突。
**坏:**
```php
function config(): array
{
return [
'foo' => 'bar',
];
}
```
**好:**
```php
class Configuration
{
private $configuration = [];
public function __construct(array $configuration)
{
$this->configuration = $configuration;
}
public function get(string $key): ?string
{
// null coalescing operator
return $this->configuration[$key] ?? null;
}
}
```
加载配置并创建 `Configuration` 类的实例
```php
$configuration = new Configuration([
'foo' => 'bar',
]);
```
现在你必须在程序中用 `Configuration` 的实例了
**[⬆ 返回顶部](#目录)**
### 不要使用单例模式
单例是一种 [反模式](https://en.wikipedia.org/wiki/Singleton_pattern). 以下是解释:Paraphrased from Brian Button:
1. 总是被用成全局实例。They are generally used as a **global instance**, why is that so bad? Because **you hide the dependencies** of your application in your code, instead of exposing them through the interfaces. Making something global to avoid passing it around is a [code smell](https://en.wikipedia.org/wiki/Code_smell).
2. 违反了[单一响应原则]()They violate the [single responsibility principle](#single-responsibility-principle-srp): by virtue of the fact that **they control their own creation and lifecycle**.
3. 导致代码强耦合They inherently cause code to be tightly [coupled](https://en.wikipedia.org/wiki/Coupling_%28computer_programming%29). This makes faking them out under **test rather difficult** in many cases.
4. 在整个程序的生命周期中始终携带状态。They carry state around for the lifetime of the application. Another hit to testing since **you can end up with a situation where tests need to be ordered** which is a big no for unit tests. Why? Because each unit test should be independent from the other.
这里有一篇非常好的讨论单例模式的[根本问题((http://misko.hevery.com/2008/08/25/root-cause-of-singletons/)的文章,是[Misko Hevery](http://misko.hevery.com/about/) 写的。
**坏:**
```php
class DBConnection
{
private static $instance;
private function __construct(string $dsn)
{
// ...
}
public static function getInstance(): self
{
if (self::$instance === null) {
self::$instance = new self();
}
return self::$instance;
}
// ...
}
$singleton = DBConnection::getInstance();
```
**好:**
```php
class DBConnection
{
public function __construct(string $dsn)
{
// ...
}
// ...
}
```
创建 `DBConnection` 类的实例并通过 [DSN](http://php.net/manual/en/pdo.construct.php#refsect1-pdo.construct-parameters) 配置.
```php
$connection = new DBConnection($dsn);
```
现在你必须在程序中 使用 `DBConnection` 的实例了
**[⬆ 返回顶部](#目录)**
### 封装条件语句
**坏:**
```php
if ($article->state === 'published') {
// ...
}
```
**好:**
```php
if ($article->isPublished()) {
// ...
}
```
**[⬆ 返回顶部](#目录)**
### 避免用反义条件判断
**坏:**
```php
function isDOMNodeNotPresent(DOMNode $node): bool
{
// ...
}
if (! isDOMNodeNotPresent($node)) {
// ...
}
```
**好:**
```php
function isDOMNodePresent(DOMNode $node): bool
{
// ...
}
if (isDOMNodePresent($node)) {
// ...
}
```
**[⬆ 返回顶部](#目录)**
### 避免条件判断
这看起来像一个不可能任务。当人们第一次听到这句话是都会这么说。
"没有`if语句`我还能做啥?" 答案是你可以使用多态来实现多种场景
的相同任务。第二个问题很常见, “这么做可以,但为什么我要这么做?”
答案是前面我们学过的一个Clean Code原则:一个函数应当只做一件事。
当你有很多含有`if`语句的类和函数时,你的函数做了不止一件事。
记住,只做一件事。
**坏:**
```php
class Airplane
{
// ...
public function getCruisingAltitude(): int
{
switch ($this->type) {
case '777':
return $this->getMaxAltitude() - $this->getPassengerCount();
case 'Air Force One':
return $this->getMaxAltitude();