- Notifications
You must be signed in to change notification settings - Fork12
🛁 Clean Code PHP Burmese Version
License
stevenay/clean-code-php
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
- Introduction
- Variables
- Use meaningful and pronounceable variable names
- Use the same vocabulary for the same type of variable
- Use searchable names (part 1)
- Use searchable names (part 2)
- Use explanatory variables
- Avoid nesting too deeply and return early (part 1)
- Avoid nesting too deeply and return early (part 2)
- Avoid Mental Mapping
- Don't add unneeded context
- Use default arguments instead of short circuiting or conditionals
- Comparison
- Functions
- Function arguments (2 or fewer ideally)
- Functions should do one thing
- Function names should say what they do
- Functions should only be one level of abstraction
- Don't use flags as function parameters
- Avoid Side Effects
- Don't write to global functions
- Don't use a Singleton pattern
- Encapsulate conditionals
- Avoid negative conditionals
- Avoid conditionals
- Avoid type-checking (part 1)
- Avoid type-checking (part 2)
- Remove dead code
- Objects and Data Structures
- Classes
- SOLID
- Don’t repeat yourself (DRY)
- Translations
ဒီစာအုပ်လေးက Robert C. Martin ရဲ့ လက်ရာမြှောက်Clean Code စာအုပ်ထဲက Software engineering principles တွေကို PHP Language အတွက် သီးသန့် (ဆီလျှော်အောင်) ပြန်လည်မွမ်းမံ စုစည်းပေးထားတာ ဖြစ်ပါတယ်။ ဒါက Coding Style Guideline တစ်ခုတော့ မဟုတ်ပါဘူး။ PHP program တွေရေးတဲ့အခါ
- Code တွေ ရှင်းရှင်းလင်းလင်းဖြစ်အောင် (ဝါ) readable ဖြစ်အောင် ၊
- Code အစိတ်အပိုင်းများကို တခါရေးပြီးနောက် အခြားနေရာများတွင်လည်း ပြန်လည်အသုံးချနိုင်အောင် (ဝါ) reusable ဖြစ်အောင်၊
- ရှုပ်ထွေးနေတဲ့ Code တွေကို လိုအပ်ရင် အလွယ်တကူ သပ်သပ်ရပ်ရပ် Structure ကျကျ ပြန်လည်ပြင်ဆင်နိုင်တဲ့ (ဝါ) refactorable ဖြစ်အောင်
ရေးသားနိုင်ဖို့ အကူအညီပေးမယ့် လမ်းညွှန်ချက်တစ်ခုဆိုရင် ပိုမှန်ပါလိမ့်မယ်။
ဒီမှာဖော်ပြထားတဲ့ Software ရေးသားနည်း ဥပဒေသတွေကို တသွေမတိမ်း လိုက်နာဖို့တော့ မလိုအပ်ပါဘူး။ တချို့သော ဥပဒေသတွေကိုသာ နေရာတိုင်းမှာ မှန်တယ်လို့ လက်ခံထားကြတာပါ။ အများစုက သူ့နေရာနဲ့သူ မှန်ကန်အောင် အသုံးချတတ်မှသာ အသုံးဝင်မှာပါ။ဒီ ဥပဒေသတွေက လမ်းညွှန်တစ်ခုထက် မပိုပါဘူး။ ဒါပေမယ့် ဒီလမ်းညွှန်ချက်တွေက နှစ်ပေါင်းများစွာ code တွေရေးရင်း ရလာတဲ့ အတွေအကြုံတွေကို Clean Code ရဲ့ မူရင်းရေးသားသူက ကြိုးစားပြီး စုစည်းပေးထားတာပါ။
Inspired fromclean-code-javascript.
အခုလက်ရှိ PHP developers တော်တော်များများက PHP 5 ကို သုံးနေဆဲဖြစ်ပေမယ့်၊ Code example တော်တော်များများကိုတော့ PHP 7.1+ ကိုသာ အသုံးပြုရေးသားဖြစ်သွားပါတယ်။
Variable တွေနာမည်ပေးတဲ့အခါ ထင်ရှားတဲ့ အဓိပ္ပာယ်ရှိပြီး အသံထွက်ဖတ်လို့ရတဲ့ စကားလုံးမျိုးတွေကိုသာ ရွေးချယ်သင့်ပါတယ်။
မဖြစ်သင့်:
$ymdstr =$moment->format('y-m-d');
ဖြစ်သင့်:
$currentDate =$moment->format('y-m-d');
အမျိုးအစားတူတဲ့ variable တွေအတွက် နာမည်ပေးတဲ့အခါ တူညီတဲ့ ဝေါဟာရတခုတည်းကိုသာ တသတ်မတ်တည်း အသုံးပြုသင့်ပါတယ်။
မဖြစ်သင့်:
getUserInfo();getUserData();getUserRecord();getUserProfile();
ဖြစ်သင့်:
getUser();
ကျွန်တော်တို့ Programmer တွေဟာ Code ရေးလို့ အချိန်ကုန်တာထက်စာရင် ရေးပြီးသား Code ကို နားလည်အောင်ပြန်ဖတ်ရတာအတွက် အချိန်ပိုကုန်လေ့ ရှိပါတယ်။ ဒါကြောင့် ကျွန်တော်တို့ ရေးတဲ့ Code တွေဟာ ပြန်ဖတ်တဲ့အခါ ဖတ်ရလွယ်ကူဖို့နဲ့ လွယ်လင့်တကူပြန်ရှာလို့ရနိုင်ဖို့ အရေးကြီးလှပါတယ်။
ပြန်ရှာတယ်ဆိုတာ - ဥပမာ: Code Line ပေါင်း ၁၀၀၀၀ လောက် ရှိတဲ့ Project ကြီးမှာ User Log In စဝင်တဲ့ အချိန်ကို ဘယ် Variable နဲ့ မှတ်ထားမိလဲဆိုတာ ပြန်ရှာသလိုမျိုးပေါ့။ userLogInTime လို့ variable ကို နာမည်မပေးဘဲ uLInTime လို့ အတိုကောက် ပေးလိုက်ရင် နောက် Maintain လုပ်မယ့် Developer အနေနဲ့ နားလည်ဖို့ အခက်အခဲဖြစ်သွားနိုင်တာကို ဆိုလိုတာပါ။
ဒါကြောင့် variable နာမည်ပေးတဲ့အခါ ပြီးပြီးရောမပေးသင့်ပါဘူး။ ကိုယ်ရေးနေတဲ့ program ကို ပြန်ဖတ်တဲ့အခါ နားလည်လွယ်စေဖို့ ရည်ရွယ်ပြီး သေချာရွေးချယ်ပြီးမှ ပေးသင့်ပါတယ်။ အဲလိုမှ မဟုတ်ရင် ကိုယ့် program ကို ဖတ်မယ့်သူတွေကို အခက်အခဲ များစွာ ဖြစ်ပေါ်စေမှာပါ။ လိုရင်းကတော့ variable နာမည်ကို ပြန်ဖတ်ရင် အဓိပ္ပာယ်ရှိအောင်၊ ပြန်ရှာလို့လွယ်အောင် ပေးပါ။
မဖြစ်သင့်:
// 448 ဆိုတာ ဘာကြီးလဲ၊ ဘာကိုဆိုလိုတာလဲ$result =$serializer->serialize($data,448);
ဖြစ်သင့်:
$json =$serializer->serialize($data,JSON_UNESCAPED_SLASHES |JSON_PRETTY_PRINT |JSON_UNESCAPED_UNICODE);
မဖြစ်သင့်::
// 4 ဆိုတာ ဘာကြီးလဲ၊ ဘာကိုရည်ရွယ်ခြင်တာလဲif ($user->access &4) {// ...}
ဖြစ်သင့်:
class User{constACCESS_READ =1;constACCESS_CREATE =2;constACCESS_UPDATE =4;constACCESS_DELETE =8;}if ($user->access & User::ACCESS_UPDATE) {// do edit ...}
Variable တွေကို အဓိပ္ပာယ်ပေါ်အောင် နာမည်ကောင်းကောင်း ပေးတတ်ရုံနဲ့ မလုံလောက်သေးပါဘူး။ Variable ကို အသုံးပြုမယ့် scope နဲ့ code statement ပေါ်မူတည်ပြီး မှန်ကန်အောင် ရေးတတ်ရပါသေးတယ်။ Technically အရ Scope in mind လို့ ခေါ်ပါတယ်။
Variable ကို အသုံးပြုထားတဲ့ code statement ကို ကြည့်ရုံနဲ့ variable ထဲမှာ ဘာ data သိမ်းပြီး process လုပ်သွားတာလဲ၊ ဘာ ရည်ရွယ်ချက်နဲ့ code statement မှာ သုံးသွားလဲဆိုတဲ့ အဓိပ္ပာယ်ပေါ်အောင်လည်း ရေးတတ်ရပါတယ်။
မဖြစ်သင့်:
အောက်ပါ ဥပမာမှာဆို regular expression ကို process လုပ်သွားတဲ့ preg_match function ထဲမှာ ပေးထားတဲ့ $matches ဆိုတဲ့ variable ဟာ သူ အဓိပ္ပာယ်နဲ့သူ မှန်နေပါတယ်။
ဒါပေမယ့်saveCityZipCode
function မှာparameters
အနေနဲ့ပေးတဲ့အခါကျတော့$matches[1]
,$matches[2]
လို့ ပေးလိုက်တာဟာ code statement ကို ဖတ်ရတာ ဝေဝါးသွားစေပါတယ်။$matches[1]
ဆိုတာ$matches
ဆိုတဲ့array
ရဲ့ ပထမအခန်းကို ရည်ညွှန်းမှန်းသိပေမယ့် အဲ့ဒီ ပထမအခန်းထဲမှာ ဘာ data သိမ်းထားမှန်းဆိုတာကတော့ မသိရတော့ပါဘူး။ အဲဒီတော့ code ကို maintain လုပ်မယ့်သူက အပေါ်ကregular expression ကို အသေးစိတ်နားလည်အောင် သွားဖတ်ရပါတော့မယ်။
$address ='One Infinite Loop, Cupertino 95014';$cityZipCodeRegex ='/^[^,]+,\s*(.+?)\s*(\d{5})$/';preg_match($cityZipCodeRegex,$address,$matches);saveCityZipCode($matches[1],$matches[2]);
အသင့်အတင့်:
အောက်က ပိုမိုကောင်းမွန်အောင် ပြန်လည်ပြင်ဆင်ထားတဲ့ ဥပမာကို ကြည့်ပါဦး။
ဒီဥပမာမှာတော့saveCityZipCode
function ရေးသားပုံက ကောင်းမွန်သွားပါပြီ။ ဒါပေသိ[, $city, $zipCode] = $matches
ဆိုတဲ့ code line ဟာ code နားလည်လွယ်အောင် အပိုရေးလိုက်ရတဲ့ code တစ်ကြောင်းပုံစံ ဖြစ်သွားပါတယ်။ တကယ့် ရှုပ်ထွေးမှုတွေကို ဖြစ်ပေါ်စေတဲ့regular expression ကို မရှင်းဘဲ code အပိုတစ်ကြောင်း ရေးလိုက်သလို ဖြစ်သွားတာပါ။
စာခြွင်း။ ။ တကယ့်လက်တွေ့မှာတော့ ဒီဥပမာက code ရေးသားမှုပုံစံဟာ လက်သင့်ခံလို့ ရပါတယ်။ အခုလောက် ရှင်းလင်းသပ်ရပ်မှု ရှိပြီဆိုရင် မဆိုးဘူးလို့ ပြောလို့ရပါပြီ။ ဘာဖြစ်လို့လဲဆိုရင် တကယ်လက်တွေ့ Project တွေမှာက အချိန်ဒီလောက် မပေးပါဘူး။ refactoring လုပ်ရင်း feature အသစ်ရေးရမယ့် အချိန်တွေပါ ကုန်သွားမှာကိုလည်း ဆင်ခြင်သင့်ပါတယ်။
$address ='One Infinite Loop, Cupertino 95014';$cityZipCodeRegex ='/^[^,]+,\s*(.+?)\s*(\d{5})$/';preg_match($cityZipCodeRegex,$address,$matches);[,$city,$zipCode] =$matches;saveCityZipCode($city,$zipCode);
ဖြစ်သင့်:
အခု ဥပမာမှာတော့ code ရေးသားမှုဟာ အကောင်းဆုံးပုံစံကို ရောက်ရှိသွားပြီလို့ ယူဆလို့ ရပါတယ်။ တကယ့် ရှုပ်ထွေးမှုကို ဖြစ်စေတဲ့regular expression ကို ရှင်းလင်းအောင်subpattern
တွေကို (naming) နာမည်ပေးပြီး ဖြေရှင်းလိုက်နိုင်ပါတယ်။ code ရေးသားမှုမှာလည်း အပိုအလို မရှိ ကျစ်လစ်သွားပါတယ်။
$address ='One Infinite Loop, Cupertino 95014';$cityZipCodeRegex ='/^[^,]+,\s*(?<city>.+?)\s*(?<zipCode>\d{5})$/';preg_match($cityZipCodeRegex,$address,$matches);saveCityZipCode($matches['city'],$matches['zipCode']);
Nested if-else statement တွေကို တတ်နိုင်သလောက် ရှောင်ပါ။ return statement တွေ အများကြီး ပြန်တာမျိုးတွေကိုလည်း ရှောင်ပါ။ (အပိုင်း ၁)
if-else statement တွေ သိပ်များသွားရင် code ကို trace လိုက်ရတာ ခက်ခဲသွားစေပါတယ်။ နောက်တစ်ခု ယူဆလို့ ရတာက ကိုယ့် ရေးတဲ့ function ထဲမှာ if-else statement တွေ ၂ ခု ၃ ခုထက် ပိုနေပြီဆိုရင် ကိုယ့် function က အလုပ်တစ်ခုထက် မက လုပ်နေပြီလို့ ယူဆလို့ ရပါတယ်။ function တစ်ခုက လုပ်ဆောင်ချက် တစ်ခုဘဲ ရှိသင့်ပါတယ်။ ဒီလို အခါမျိုးမှာ Polymorphism (သို့) State/Strategy pattern နဲ့ ပြန်ပြီး code ကို refactor လုပ်လို့ ရပါတယ်။
function တစ်ခုကနေ return statement တွေ အများကြီး ပြန်တာမျိုးတွေကိုလည်း ရှောင်သင့်ပါတယ်။ ဒီအချက်ကလည်း function တစ်ခုကို trace လိုက်ရတာ အတော်လေး ခက်ခဲသွားစေနိုင်တဲ့ အချက်ပါ။ return statement အများဆုံး ဘယ်လောက်ဘဲ ရှိသင့်တယ်လို့တော့ အတိအကျ သတ်မှတ်ထားတာ မရှိပါဘူး။ နည်းနိုင်သမျှ နည်းတာတော့ ကောင်းပါတယ်။
Returning early ဆိုတဲ့ အယူအဆ မျိုးတော့ ရှိပါတယ်။ ဥပမာ - file download လုပ်တဲ့ function တစ်ခုမှာ Internet connection မရှိရင် exception တက်တာဘဲဖြစ်ဖြစ်၊ return false ပြန်တာဘဲဖြစ်ဖြစ်ကို function ရဲ့ အပေါ်ဆုံး code line တွေမှာ ရေးလို့ ရပါတယ်။ ဒါပေမယ့် function ကို ဖတ်ရတာ ပိုကောင်းသွားစေတယ်လို့ သေချာမှသာ ဒီလိုမျိုး ရေးသင့်ပါတယ်။
စာခြွင်း ရှင်းလင်းချက်:trace လိုက်တယ်ဆိုတာ code တကြောင်းခြင်းစီက ဘာအလုပ်လုပ်သွားလဲ၊ ဘာ output ထွက်သွားလဲဆိုတာ လိုက်ကြည့်တယ်လို့ ယေဘုယျနားလည်လို့ ရပါတယ်။ PHP မှာဆိုရင် xdebug နဲ့ debug လိုက်ကြည့်သလိုမျိုး၊ var_dump နဲ့ print ထုတ်ကြည့်သလိုမျိုးပေါ့။ ဒီလို tools တွေနဲ့ မဟုတ်ဘဲ စိတ်ထဲမှာဘဲဖြစ်စေ၊ စာအုပ်ပေါ်မှာ ချရေးပြီးတော့ ဖြစ်စေ step by step စိတ်မှန်းနဲ့လည်း trace လိုက်သွားတာမျိုးလည်း ရှိပါတယ်။ အဲဒါကို term အရ Dry Run လို့ ခေါ်ပါတယ်။
ပုံမှန် trace ကို code ရဲ့ ဘယ်နားက error တက်သွားလဲဆိုတာသိဖို့ လိုက်ကြတာ များပါတယ်။ သို့မဟုတ် သူများရေးထားတဲ့ (ကိုယ်အရင်က ရေးထားပေမယ့် မေ့သွားတဲ့) code တွေကို နားလည်အောင် ပြန် ဖတ်တဲ့ အခါမျိုးမှာလည်း သုံးပါတယ်။
မဖြစ်သင့်:
functionisShopOpen($day):bool{if ($day) {if (is_string($day)) {$day =strtolower($day);if ($day ==='friday') {returntrue; }elseif ($day ==='saturday') {returntrue; }elseif ($day ==='sunday') {returntrue; }else {returnfalse; } }else {returnfalse; } }else {returnfalse; }}
ဖြစ်သင့်:
functionisShopOpen(string$day):bool{if (empty($day)) {returnfalse; }$openingDays = ['friday','saturday','sunday' ];returnin_array(strtolower($day),$openingDays,true);}
မဖြစ်သင့်:
functionfibonacci(int$n){if ($n <50) {if ($n !==0) {if ($n !==1) {returnfibonacci($n -1) +fibonacci($n -2); }else {return1; } }else {return0; } }else {return'Not supported'; }}
ဖြစ်သင့်:
functionfibonacci(int$n):int{if ($n ===0 ||$n ===1) {return$n; }if ($n >50) {thrownew \Exception('Not supported'); }returnfibonacci($n -1) +fibonacci($n -2);}
ဒီအချက်ကတော့ အပေါ်ကအချက်တွေကိုဘဲ မူကွဲပုံစံ တစ်မျိုးနဲ့ ပြောထားတာပါ။Variable တစ်ခုကို နားလည်ဖို့ သူ့ထဲမှာ သိမ်းထားတဲ့ data ကို သွားဖတ်ပြီးမှ သိရတာမျိုးက မကောင်းပါဘူး။ ရှင်းလင်းပြတ်သားခြင်းက သွယ်ဝိုက်နေတာထက် ပိုကောင်းပါတယ်။
မဖြစ်သင့်:
$l = ['Austin','New York','San Francisco'];for ($i =0;$i <count($l);$i++) {$li =$l[$i];doStuff();doSomeOtherStuff();// ...// ...// ...// Wait, what is `$li` for again?dispatch($li);}
ဖြစ်သင့်:
$locations = ['Austin','New York','San Francisco'];foreach ($locationsas$location) {doStuff();doSomeOtherStuff();// ...// ...// ...dispatch($location);}
ဖော်ပြခဲ့သမျှ အချက်တွေကတော့ Variable နာမည် ပေးတဲ့အခါ တတ်နိုင်သမျှ ပြည့်စုံရှင်းလင်းအောင် ရေးဖို့ ပြောထားတာပါ။ဒါပေမယ့် မလိုအပ်ဘဲ စကားဆက် (context) တွေ မထည့်မိဖို့လည်း အရေးကြီးပါတယ်။
ဥပမာပေးရမယ်ဆိုရင် class/object ထဲက member variable တိုင်းမှာ class နာမည်ကြီးကို ရှေ့က လိုက်ထည့်နေတာမျိုးပါ။ "User" class ထဲမှာ user ရဲ့ အသက်ကိုသိမ်းဖို့ variable ကို နာမည်ပေးတဲ့အခါ age ဆိုရင် လုံလောက်ပါပြီ။ userAge ဆိုပြီး စကားဆက် (context) ကို ရှေ့ကခံပေးစရာ မလိုပါဘူး။ ဘာဖြစ်လို့လဲဆိုရင်အဲ့ဒီ age ဆိုတဲ့ member variable ကို ခေါ်သုံးတဲ့အခါuser->age
ဆိုပြီး ခေါ်သုံးရမှာ ဖြစ်လို့ပါ။user->age
ဆိုတဲ့ code expression ကို ကြည့်မယ်ဆိုရင် user ရဲ့ age ကို ရည်ညွှန်းမှန်း သိသာပါတယ်။
မဖြစ်သင့်:
class Car{public$carMake;public$carModel;public$carColor;//...}
ဖြစ်သင့်:
class Car{public$make;public$model;public$color;//...}
Programmer တွေအနေနဲ့ Function တွေကို ရေးတဲ့အခါတိုင်း parameter declaration ဆိုတာကို တနည်းမဟုတ်တနည်းနဲ့တော့ ကြုံကြရတာပါဘဲ။
Parameter ကြေငြာတဲ့အခါ အဲဒီ parameter အတွက် default value သတ်မှတ်ပေးဖို့ လိုအပ်တဲ့အခါတိုင်း default argument ကြေငြာတဲ့ပုံစံမျိုးနဲ့ဘဲ ရေးသင့်ပါတယ်။Ternary conditional ပုံစံတွေ၊short circuiting ပုံစံတွေနဲ့ မရေးသင့်ပါဘူး။
စာခြွင်း။ ။short circuiting ဆိုတဲ့ term က တချို့သော developer တွေအတွက် အနည်းငယ် စိမ်းနေနိုင်ပါတယ်။ ဒီwiki link နဲ့stackoverflow link မှာတော့ ရှင်းထားတာ အတော်လေး ကောင်းပါတယ်။
မဖြစ်သင့်:
ဒီရေးသားမှုပုံစံဟာ လိုအပ်ချက်ရှိနေသေးတယ်လို့ ယူဆလို့ရပါတယ်။ အောက်ပါ function ကိုသာ$this->createMicrobrewery(null)
နဲ့ call လိုက်ရင်$breweryName
ဟာ ဖြစ်စေခြင်တဲ့ default value “Hipster Brew Co.” အစားnull
value ဝင်သွားမှာပါ။
စာခြွင်း။ ။ ကိုယ်ပိုင်အမြင်အရဆိုရင် ဒီရေးသားမှုပုံစံဟာ function ရဲ့ argument control ကို လျှော့ကျသွားတယ် ဆိုရုံလောက်ဘဲ ယူဆလို့ ရတာပါ။PHP လိုdynamic typing language တစ်ခုမှာ function parameter တစ်ခုကိုnull
value ဝင်တာနဲ့ မကောင်းဘူးပြောဖို့ဆိုတာ အနည်းငယ် တဖက်သက်ဆန်တယ်လို့ ခံစားမိပါတယ်။
functioncreateMicrobrewery($breweryName ='Hipster Brew Co.'):void{ // ...}
အသင့်အတင့်:
ဒီရေးသားမှုပုံစံကတော့ မဆိုးဘူးလို့ ပြောလို့ရပါပြီ။ default value ကိုnull
လို့ ထားလိုက်တယ်။ ပြီးမှ function body ထဲမှာternary operator နဲ့null
ဖြစ်ခဲ့ရင် actual default value “Hipster Brew Co.” ထည့်မယ်ဆိုပြီး ရေးလိုက်ပါတယ်။
ဒါကြောင့် argument မသတ်မှတ်ဘဲ function call လိုက်သည်ဖြစ်စေ၊null
orempty value
ပေးလိုက်သည်ဖြစ်စေ$breweryName
parameter ဟာ actual default value “Hipster Brew Co.” ရှိနေတော့မှာပါ။
စာခြွင်း။ ။ ဒီ ရေးသားမှုမှာလည်း မိမိကိုယ်ပိုင်အမြင်အရဆိုရင် အရမ်းကြီး သဘောမတူခြင်ပါဘူး။ default argument ဆိုတာnull
value ကို ရှောင်ခြင်လို့ ရေးရတာမျိုး မဟုတ်ပါဘူး။ function call တဲ့ အချိန်မှာ လိုအပ်တဲ့ parameter အတွက် argument မပေးခဲ့ဘူးဆိုရင် logic အရ default value တစ်ခု သတ်မှတ်ပေးလိုက်တဲ့ သဘောပါ။
functioncreateMicrobrewery($name =null):void{ $breweryName =$name ?:'Hipster Brew Co.';// ...}
ဖြစ်သင့်:
ဒီ ရေးသားမှုမှာတော့ Php7 ရဲ့type hinting feature ကို အသုံးပြုပြီး argument ကိုstring datatype နဲ့ restrict လုပ်လိုက်ပါတယ်။ ဒါကြောင့်null
value ဝင်လာခဲ့ရင်exception
တက်မှာပါ။
null
value ဖြစ်မှာလည်း စိုးရိမ်စရာ မလိုတော့သလို default argument လည်း ကြေငြာပြီးသား ဖြစ်သွားစေတဲ့အတွက် ကောင်းမွန်တဲ့ ရေးသားမှုတစ်ခုလို့ ဆိုလို့ရပါတယ်။
functioncreateMicrobrewery(string$breweryName ='Hipster Brew Co.'):void{ // ...}
Php မှာ == (equality) နဲ့ === (identical) ဆိုပြီး comparison operator နှစ်မျိုးရှိတာ developer တိုင်း သိကြမှာပါ။ Php မှာ == (equality) နဲ့ === (identical) ဆိုပြီး comparison operator နှစ်မျိုးရှိတာ developer တိုင်း သိကြမှာပါ။ == (equality) comparison နဲ့ condition စစ်ရင် operands တွေကို type juggling လုပ်လိုက်ပါတယ်။ === (identical) comparison မှာတော့ type juggling မလုပ်ပါဘူး။
Type juggling rules အသေးစိတ်ကိုတော့php official documentation မှာ သွားဖတ်လို့ ရပါတယ်။
Type juggling လုပ်တဲ့ rules တွေက အနည်းငယ် ရှုပ်ထွေးပြီး အလွတ်မှတ်ထား နိုင်ဖို့လည်း မလွယ်လှပါဘူး။ ဒါကြောင့် == (equality) operator နဲ့ရေးတဲ့ comparison expression တွေမှာ ကိုယ်မမျှော်လင့်ထားတဲ့ result တွေ ထွက်လာနိုင်ပါတယ်။
ဖြစ်နိုင်ရင်တော့ condition စစ်တိုင်း (===) identical comparison operator ကိုသာ သုံးသင့်ပါတယ်။
မဖြစ်သင့်:
အောက်ပါ code block မှာဆိုရင် (==) equality comparison operator က string ကို integer ပြောင်းလိုက်ပါတယ်။
$a ='42';$b =42;if ($a !=$b) {// The expression will always pass}
string42
နဲ့integer42
ဟာ computational logic အရ ဆိုရင် မတူပါဘူး။ ဒါပေမယ့်$a != $b
လို့ comparison လုပ်လိုက်ရင်တော့FALSE
return ပြန်လာတာကို တွေ့ရမှာပါ။
ဘာဖြစ်လို့လဲဆိုရင် သူတို့နှစ်ခုကို (==) equality operator က type juggling လုပ်လိုက်တဲ့အတွက်string42
ကinteger ဖြစ်သွားပါတယ်။ ဒါကြောင့် သူတို့နှစ်ခုကို comparison လုပ်တဲ့အခါ တူတယ်ဆိုတဲ့အဖြေဆိုတဲ့ ထွက်လာစေတာပါ။
ဖြစ်သင့်:
(===) identical operator ကတော့ operand တွေရဲ့ datatype မတူရင် value comparison ကို မလုပ်ဆောင်တော့ပါဘူး။
$a ='42';$b =42;if ($a !==$b) {// The expression is verified}
အထက်ပါ code block မှာတော့ မျှော်လင့်ထားတဲ့အတိုင်းTRUE
ကို ရရှိမှာဘဲ ဖြစ်ပါတယ်။
Function parameters အရေအတွက်ကို ကန့်သတ်ထားဖို့က အရမ်း အရေးကြီးပါတယ်။ Function parameters နည်းတဲ့အခါ အဲဒီ function အတွက် testing ရေးရတာ ပိုလွယ်ကူတာကို တွေ့ရမှာပါ။Parameters ၃ ခုထက် ကျော်သွားရင် parameter တစ်ခုခြင်းစီအတွက် မတူတဲ့ value တစ်ခုခြင်းစီနဲ့ Test case တွေ လိုက်ရေးပေးနေရတဲ့အတွက် Test case တွေ အများကြီး ဖောင်းပွသွားနိုင်တာကို သတိချပ်သင့်ပါတယ်။
Zero argument (argument တစ်ခုမှ မလိုတဲ့ function) က အကောင်းဆုံးပါ။ Argument ၁ ခု (သို့) ၂ ခု လောက်ထိ အဆင်ပြေပါတယ်။ ၃ ခု ဆိုရင်တော့ စတင် သတိထားပြီး ရှောင်ရှားသင့်ပါပြီ။ အဲဒါထက် ပိုများသွားပြီဆိုရင်တော့ function ကို ပြန်ပြင်ရေးသင့်နေပါပြီ။ Argument ၂ ခုထက် ပိုနေတာဟာ အဲဒီ function က အလုပ်တစ်ခုထက်မက လုပ်နေပြီလို့ ယူဆလို့ ရပါတယ်။ အကယ်၍ ၃ ခုထက် ပိုတဲ့ argument တွေက context တစ်ခုတည်းအောက်မှာ ရှိနေတဲ့အခါမျိုးမှာတော့ object တစ်ခု အစားတည်ဆောက်ပြီး pass ပေးသင့်ပါတယ်။
အောက်ပါ ဥပမာကို လေ့လာကြည့်လို့ ရပါတယ်။ Menu တစ်ခု တည်ဆောက်ဖို့ parameter ၄ ခု pass ပေးမယ့်အစား MenuConfig ဆိုတဲ့ object တစ်ခု တည်ဆောက်ပြီး createMenu function ကို pass ပေးလိုက်တာ တွေ့ရမှာပါ။
မဖြစ်သင့်:
functioncreateMenu(string$title,string$body,string$buttonText,bool$cancellable):void{// ...}
ဖြစ်သင့်:
class MenuConfig{public$title;public$body;public$buttonText;public$cancellable =false;}$config =newMenuConfig();$config->title ='Foo';$config->body ='Bar';$config->buttonText ='Baz';$config->cancellable =true;functioncreateMenu(MenuConfig$config):void{// ...}
ဒါကတော့ software engineering မှာ လိုက်နာသင့်တဲ့ အရေးကြီးဆုံး စည်းကမ်း တစ်ခုပါဘဲ။ အလုပ်တစ်ခုထက်ပိုတဲ့ Functions တွေ ရေးမိတဲ့အခါ program ကို အစဉ်တကျဆက်ရေးဖို့ ခက်သွားစေပါတယ်။ ဒုတိယအချက်အနေနဲ့ test case တွေ ရေးရတာလည်း မလွယ်တော့ပါဘူး။ Function က အလုပ်တစ်ခုထက် ပိုလုပ်တဲ့အတွက် အဲဒါကို cover ဖြစ်ဖို့အတွက် test cases တွေ အများကြီး လိုက်ရေးရတော့တာပါဘဲ။ တတိယအချက်ကတော့ reason to change တစ်ခုထက် ပိုသွားတာပါဘဲ။ Function တစ်ခုဟာ program ထဲမှာ သူဘာကြောင့်တည်ရှိနေသင့်လဲဆိုတဲ့ ရည်ရွယ်ချက် တစ်ခုဘဲ ရှိသင့်ပါတယ်။ အဲ့ဒါကို reason to change လို့ ခေါ်ကြတာပါ။
Function တွေကို လုပ်ဆောင်ချက် တစ်ခုတည်းသာလုပ်ဖို့ ကန့်သတ်ရေးသားနိုင်မယ်ဆိုရင် refactor လုပ်ရလွယ်သလို code တွေကလည်း အတော်လေး ရှင်းလင်းသွားပါလိမ့်မယ်။ အကယ်လို့ ဒီ guide ထဲက တခြားလမ်းညွှန်ချက်တွေကို မေ့ခြင်မေ့သွားပါစေ၊ ဒီတစ်ချက်ကိုတော့ သေချာပေါက် မှတ်ထားဖို့ လိုပါတယ်။ ဒီ တစ်ချက်ကို လိုက်နာနိုင်ယုံနဲ့တင် ပုံမှန် developers တွေရေးတဲ့ code ထက် အများကြီးသာတဲ့ clean code ကို ရေးနိုင်သွားမှာပါ။
စကားချပ်။ ။ ဒီမှာ တစ်ခုရှိနိုင်တာက လုပ်ဆောင်ချက်တစ်ခုတည်းလုပ်တယ်ဆိုတာ ဘာကို ပြောတာလဲဆိုပြီး မေးခွန်းထုတ်နိုင်ပါတယ်။ Function body ထဲမှာ ရှိတဲ့ code တွေ အားလုံးဟာ abstraction level တစ်ခုတည်းအောက်မှာ ရှိနေပြီး final output result တစ်ခုတည်းရှိနေခြင်းကို ဆိုလိုပါတယ်။
ဥပမာ - hard disk ပေါ်မှာ file သိမ်းတဲ့ function တစ်ခုကိုရေးမယ်ဆိုရင် code line တွေ အများကြီး ပါဝင်နိုင်ပေမယ့် သူတို့အားလုံးရဲ့ ရည်ရွယ်ချက်ကတော့ နောက်ဆုံးမှာ file သိမ်းသွားဖို့ပါဘဲ။ cloud ပေါ်မှာ file သိမ်းတဲ့ လုပ်ဆောင်ချက်ကိုပါ ထည့်ရေးလိုက်ရင် ဒါလုပ်ဆောင်ချက်တစ်ခုထက်ပိုတဲ့ function တစ်ခု ဖြစ်သွားပါလိမ့်မယ်။
မဖြစ်သင့်:
functionemailClients(array$clients):void{foreach ($clientsas$client) {$clientRecord =$db->find($client);if ($clientRecord->isActive()) {email($client); } }}
ဖြစ်သင့်:
functionemailClients(array$clients):void{$activeClients =activeClients($clients);array_walk($activeClients,'email');}functionactiveClients(array$clients):array{returnarray_filter($clients,'isClientActive');}functionisClientActive(int$client):bool{$clientRecord =$db->find($client);return$clientRecord->isActive();}
Programmer တွေဟာ ဗေဒင်ဆရာမဟုတ်ပေမယ့် နာမည်ပေးတဲ့အလုပ်ကိုတော့ နိစ္စဓူဝ ပျော်ပျော်ကြီး လုပ်နေကြရပါတယ်။ ဒီနေရာမှာလည်း Function တွေကို နာမည်ပေးတဲ့အခါ သူရဲ့လုပ်ဆောင်ချက်ကို ပေါ်လွင်စေတဲ့ အမည်မျိုးကို ရွေးချယ်ပေးသင့်ပါတယ်။ နာမည်ကောင်းတစ်ခု ရွေးချယ်သတ်မှတ်ရတာဟာ လွယ်တဲ့အလုပ်တစ်ခုတော့ မဟုတ်ပါဘူး။အချိန်ပေးပြီး စဉ်းစားရပါတယ်။ ဒါပေမယ့် ရေရည်မှာ ကိုယ့် program ရဲ့ maintainability ကို အများကြီး အထောက်အကူကောင်း ဖြစ်စေမှာပါ။
မဖြစ်သင့်:
class Email{//...publicfunctionhandle():void {mail($this->to,$this->subject,$this->body); }}$message =newEmail(...);// What is this? A handle for the message? Are we writing to a file now?$message->handle();
ဖြစ်သင့်:
class Email {//...publicfunctionsend():void {mail($this->to,$this->subject,$this->body); }}$message =newEmail(...);// Clear and obvious$message->send();
When you have more than one level of abstraction your function is usuallydoing too much. Splitting up functions leads to reusability and easiertesting.
Bad:
functionparseBetterJSAlternative(string$code):void{$regexes = [// ... ];$statements =explode('',$code);$tokens = [];foreach ($regexesas$regex) {foreach ($statementsas$statement) {// ... } }$ast = [];foreach ($tokensas$token) {// lex... }foreach ($astas$node) {// parse... }}
Bad too:
We have carried out some of the functionality, but theparseBetterJSAlternative()
function is still very complex and not testable.
functiontokenize(string$code):array{$regexes = [// ... ];$statements =explode('',$code);$tokens = [];foreach ($regexesas$regex) {foreach ($statementsas$statement) {$tokens[] =/* ... */; } }return$tokens;}functionlexer(array$tokens):array{$ast = [];foreach ($tokensas$token) {$ast[] =/* ... */; }return$ast;}functionparseBetterJSAlternative(string$code):void{$tokens =tokenize($code);$ast =lexer($tokens);foreach ($astas$node) {// parse... }}
Good:
The best solution is move out the dependencies ofparseBetterJSAlternative()
function.
class Tokenizer{publicfunctiontokenize(string$code):array {$regexes = [// ... ];$statements =explode('',$code);$tokens = [];foreach ($regexesas$regex) {foreach ($statementsas$statement) {$tokens[] =/* ... */; } }return$tokens; }}class Lexer{publicfunctionlexify(array$tokens):array {$ast = [];foreach ($tokensas$token) {$ast[] =/* ... */; }return$ast; }}class BetterJSAlternative{private$tokenizer;private$lexer;publicfunction__construct(Tokenizer$tokenizer,Lexer$lexer) {$this->tokenizer =$tokenizer;$this->lexer =$lexer; }publicfunctionparse(string$code):void {$tokens =$this->tokenizer->tokenize($code);$ast =$this->lexer->lexify($tokens);foreach ($astas$node) {// parse... } }}
Flag Argument တွေကို function ရေးတဲ့နေရာမှာ သုံးတာကလည်း ဆိုးရွားတဲ့ ရေးသားပုံတစ်ခုပါဘဲ။Flag Argument ဆိုတာ function ခေါ်တဲ့အခါ boolean value တစ်ခုကို parameter အနေနဲ့ လက်ခံတယ်။ အဲဒီ boolean value ပေါ်မှာ မူတည်ပြီး function ထဲမှာ လုပ်ဆောင်ချက်တွေပြောင်းလဲ လုပ်ဆောင်ဖို့ ရေးသားထားတဲ့ ပုံစံကို ပြောတာပါ။
အောက်က code example ကို ကြည့်လို့ ရပါတယ်။ Concert booking လုပ်တဲ့ function မှာ isPremium ဆိုတဲ့ boolean argument တစ်ခုကို လက်ခံတယ်။ isPremium က true ဖြစ်ခဲ့ရင် premium booking ကိုလုပ်ပြီး false ဆိုရင် regular booking ကို လုပ်ဆောင်ဖို့ ရေးထားပါတယ်။ မကောင်းတဲ့အချက်တွေက -၁) function က premium booking နဲ့ regular booking ဆိုပြီး အလုပ်တစ်ခုထက် ပိုလုပ်ဖို့ ရေးထားတယ်၊၂) function ကို ခေါ်တဲ့နေရာမှာလည်း order->book(customer, true) ဆိုတဲ့ statement ဟာဆိုရင် function declaration ကိုသွားမကြည့်ဘဲ boolean parameter က ဘာကိုကိုယ်စားပြုလဲဆိုတာ သိဖို့မလွယ်ကူဘူး။
ဒါကြောင့် ဒီလို flag နဲ့ ရေးမယ့်အစား function နှစ်ခုခွဲပြီး ရေးသားသင့်ပါတယ်။
Bad:
functionconcertBooking(Customer$customer,bool$isPremium =false):void{if ($isPremium) {// premium booking logic }else {// regular booking logic }}
Good:
functionregularBooking(Customer$customer):void{// regular booking logic}functionpremiumBooking(Customer$customer):void{// premium booking logic}
စာခြွင်း။ ။
တခါတလေ function နှစ်ခုခွဲရေးလိုက်လို့ ဘုံတူနေတဲ့ code တွေ duplicate ဖြစ်ကုန်တဲ့ အခါမျိုးတွေလည်း ကြုံကောင်းကြုံရနိုင်ပါတယ်။ ဥပမာ - အထက်က booking case မျိုးမှာဆိုရင် booking အတွက် ထိုင်ခုံလွတ်ကျန်သေးလားစစ်တဲ့ code ကို premiumBooking မှာရော၊ regularBooking မှာပါ နှစ်ခါလိုက်ရေးရတဲ့ အခြေအနေမျိုး ဖြစ်လာနိုင်ပါတယ်။
အကယ်လို့ duplication ပမာဏက အရမ်းများသွားတဲ့ အခြေအနေမျိုးမှာဆိုရင် method ကို နှစ်ခုမခွဲဘဲ ဒီအတိုင်း ထားလိုက်လို့ရပါတယ်။ ဒါပေမယ့် private scope နဲ့ hidden လုပ်လိုက်ပါ။ပြီးမှ သူကိုယူသုံးလို့ရအောင် public method နှစ်ခုပြန်ခွဲရေးပေးလိုက်လို့ ရပါတယ်။ မြင်သာအောင် အောက်က ဥပမာလေးနဲ့ တွဲကြည့်ပေးပါ။
functionregularBooking(Customer$customer):void{return$this->hiddenBookingImpl($customer);}functionpremiumBooking(Customer$customer):void{return$this->hiddenBookingImpl($customer,true);}privatefunctionhiddenBookingImpl(Customer$customer,bool$isPremium =false) :void{...}
ဒီအတိုင်းဆိုရင် code လည်း duplicate မဖြစ်တော့ဘူး။ client class တွေထဲမှာလည်း readable code တွေ ရေးလို့ရသွားပါပြီ။
Side Effect ဆိုတာ function ရဲ့ scope အပြင်ဘက်က state တစ်ခုခုကို (မမျှော်လင့်ထားတဲ့) ပြောင်းလဲမှုတွေ လုပ်လိုက်တာကို ပြောတာပါ။ ဥပမာ - file တစ်ခုကို data သွား write တာ၊ global variable, member variable တွေထဲမှာ သိမ်းထားတဲ့ data တွေကို ပြောင်းပစ်လိုက်တာ၊ database ထဲမှာ data သွားထည့်တာ၊ ပြင်တာ၊ဖျက်တာ အစရှိတဲ့ လုပ်ဆောင်ချက်တွေက side effect တွေပေါ့။
စာခြွင်း။ ။ဒီနေရာမှာ တစ်ခုသတိထားရမှာက Functional Programming နဲ့ Object Oriented Programming ပေါ်မှာ မူတည်ပြီး function နဲ့ side effect အပေါ်ယူဆချက်တွေက ကွဲပြားပါသေးတယ်။ ကိုယ်ပြောနေတဲ့ အကြောင်းအရာသည် ဘယ် Programming Paradigm ပေါ်မူတည်ပြီး ပြောနေလဲဆိုတာသိဖို့ အလွန်အရေးကြီးပါတယ်။
မူရင်း Clean code စာအုပ်ရဲ့ coding အယူအဆအားလုံးနီးပါးဟာ Object Oriented Programming (OOP) ပေါ်မှာ အခြေခံထားတာပါ။ ဒါကြောင့် ဒီနေရာမှာ side effect အကြောင်းကို OOP Paradigm နဲ့ဘဲ ရှင်းလင်းသွားပါ့မယ်။
Function Programming (FP) မှာလည်း pure function ဆိုတဲ့ code ရေးသားနည်းပုံစံ ရှိပါတယ်။ သူ့မှာလည်း မဖြစ်မနေလိုက်နာရမယ့် အခြေခံအချက်လေးတွေ ရှိပါတယ်။ ဥပမာ - idempotent တို့၊ no side effect တို့ပါ။ အသေးစိတ်တော့ မရေးတော့ပါဘူး။ အဓိက OOP နဲ့ မရောသွားစေဖို့ သတိချပ်စေခြင်တာပါဘဲ။
Bad:
// 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';functionsplitIntoFirstAndLastName():void{global$name;$name =explode('',$name);}splitIntoFirstAndLastName();var_dump($name);// ['Ryan', 'McDermott'];
Good:
functionsplitIntoFirstAndLastName(string$name):array{returnexplode('',$name);}$name ='Ryan McDermott';$newName =splitIntoFirstAndLastName($name);var_dump($name);// 'Ryan McDermott';var_dump($newName);// ['Ryan', 'McDermott'];
Polluting globals is a bad practice in many languages because you could clash with anotherlibrary and the user of your API would be none-the-wiser until they get an exception inproduction. Let's think about an example: what if you wanted to have configuration array?You could write global function likeconfig()
, but it could clash with another librarythat tried to do the same thing.
Bad:
functionconfig():array{return ['foo' =>'bar', ]}
Good:
class Configuration{private$configuration = [];publicfunction__construct(array$configuration) {$this->configuration =$configuration; }publicfunctionget(string$key): ?string {returnisset($this->configuration[$key]) ?$this->configuration[$key] :null; }}
Load configuration and create instance ofConfiguration
class
$configuration =newConfiguration(['foo' =>'bar',]);
And now you must use instance ofConfiguration
in your application.
Singleton is ananti-pattern. Paraphrased from Brian Button:
- They are generally used as aglobal instance, why is that so bad? Becauseyou 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 acode smell.
- They violate thesingle responsibility principle: by virtue of the fact thatthey control their own creation and lifecycle.
- They inherently cause code to be tightlycoupled. This makes faking them out undertest rather difficult in many cases.
- They carry state around for the lifetime of the application. Another hit to testing sinceyou 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.
There is also very good thoughts byMisko Hevery about theroot of problem.
Bad:
class DBConnection{privatestatic$instance;privatefunction__construct(string$dsn) {// ... }publicstaticfunctiongetInstance():DBConnection {if (self::$instance ===null) {self::$instance =newself(); }returnself::$instance; }// ...}$singleton = DBConnection::getInstance();
Good:
class DBConnection{publicfunction__construct(string$dsn) {// ... }// ...}
Create instance ofDBConnection
class and configure it withDSN.
$connection =newDBConnection($dsn);
And now you must use instance ofDBConnection
in your application.
Bad:
if ($article->state ==='published') {// ...}
Good:
if ($article->isPublished()) {// ...}
Bad:
functionisDOMNodeNotPresent(\DOMNode$node):bool{// ...}if (!isDOMNodeNotPresent($node)){// ...}
Good:
functionisDOMNodePresent(\DOMNode$node):bool{// ...}if (isDOMNodePresent($node)) {// ...}
This seems like an impossible task. Upon first hearing this, most people say,"how am I supposed to do anything without anif
statement?" The answer is thatyou can use polymorphism to achieve the same task in many cases. The secondquestion is usually, "well that's great but why would I want to do that?" Theanswer is a previous clean code concept we learned: a function should only doone thing. When you have classes and functions that haveif
statements, youare telling your user that your function does more than one thing. Remember,just do one thing.
Bad:
class Airplane{// ...publicfunctiongetCruisingAltitude():int {switch ($this->type) {case'777':return$this->getMaxAltitude() -$this->getPassengerCount();case'Air Force One':return$this->getMaxAltitude();case'Cessna':return$this->getMaxAltitude() -$this->getFuelExpenditure(); } }}
Good:
interface Airplane{// ...publicfunctiongetCruisingAltitude():int;}class Boeing777implements Airplane{// ...publicfunctiongetCruisingAltitude():int {return$this->getMaxAltitude() -$this->getPassengerCount(); }}class AirForceOneimplements Airplane{// ...publicfunctiongetCruisingAltitude():int {return$this->getMaxAltitude(); }}class Cessnaimplements Airplane{// ...publicfunctiongetCruisingAltitude():int {return$this->getMaxAltitude() -$this->getFuelExpenditure(); }}
PHP is untyped, which means your functions can take any type of argument.Sometimes you are bitten by this freedom and it becomes tempting to dotype-checking in your functions. There are many ways to avoid having to do this.The first thing to consider is consistent APIs.
Bad:
functiontravelToTexas($vehicle):void{if ($vehicleinstanceof Bicycle) {$vehicle->pedalTo(newLocation('texas')); }elseif ($vehicleinstanceof Car) {$vehicle->driveTo(newLocation('texas')); }}
Good:
functiontravelToTexas(Traveler$vehicle):void{$vehicle->travelTo(newLocation('texas'));}
If you are working with basic primitive values like strings, integers, and arrays,and you use PHP 7+ and you can't use polymorphism but you still feel the need totype-check, you should considertype declarationor strict mode. It provides you with static typing on top of standard PHP syntax.The problem with manually type-checking is that doing it will require so muchextra verbiage that the faux "type-safety" you get doesn't make up for the lostreadability. Keep your PHP clean, write good tests, and have good code reviews.Otherwise, do all of that but with PHP strict type declaration or strict mode.
Bad:
functioncombine($val1,$val2):int{if (!is_numeric($val1) || !is_numeric($val2)) {thrownew \Exception('Must be of type Number'); }return$val1 +$val2;}
Good:
functioncombine(int$val1,int$val2):int{return$val1 +$val2;}
Dead code is just as bad as duplicate code. There's no reason to keep it inyour codebase. If it's not being called, get rid of it! It will still be safein your version history if you still need it.
Bad:
functionoldRequestModule(string$url):void{// ...}functionnewRequestModule(string$url):void{// ...}$request =newRequestModule($requestUrl);inventoryTracker('apples',$request,'www.inventory-awesome.io');
Good:
functionrequestModule(string$url):void{// ...}$request =requestModule($requestUrl);inventoryTracker('apples',$request,'www.inventory-awesome.io');
In PHP you can setpublic
,protected
andprivate
keywords for methods.Using it, you can control properties modification on an object.
- When you want to do more beyond getting an object property, you don't haveto look up and change every accessor in your codebase.
- Makes adding validation simple when doing a
set
. - Encapsulates the internal representation.
- Easy to add logging and error handling when getting and setting.
- Inheriting this class, you can override default functionality.
- You can lazy load your object's properties, let's say getting it from aserver.
Additionally, this is part ofOpen/Closed principle.
Bad:
class BankAccount{public$balance =1000;}$bankAccount =newBankAccount();// Buy shoes...$bankAccount->balance -=100;
Good:
class BankAccount{private$balance;publicfunction__construct(int$balance =1000) {$this->balance =$balance; }publicfunctionwithdraw(int$amount):void {if ($amount >$this->balance) {thrownew \Exception('Amount greater than available balance.'); }$this->balance -=$amount; }publicfunctiondeposit(int$amount):void {$this->balance +=$amount; } publicfunctiongetBalance():int {return$this->balance; }}$bankAccount =newBankAccount();// Buy shoes...$bankAccount->withdraw($shoesPrice);// Get balance$balance =$bankAccount->getBalance();
public
methods and properties are most dangerous for changes, because some outside code may easily rely on them and you can't control what code relies on them.Modifications in class are dangerous for all users of class.protected
modifier are as dangerous as public, because they are available in scope of any child class. This effectively means that difference between public and protected is only in access mechanism, but encapsulation guarantee remains the same.Modifications in class are dangerous for all descendant classes.private
modifier guarantees that code isdangerous to modify only in boundaries of single class (you are safe for modifications and you won't haveJenga effect).
Therefore, useprivate
by default andpublic/protected
when you need to provide access for external classes.
For more informations you can read theblog post on this topic written byFabien Potencier.
Bad:
class Employee{public$name;publicfunction__construct(string$name) {$this->name =$name; }}$employee =newEmployee('John Doe');echo'Employee name:'.$employee->name;// Employee name: John Doe
Good:
class Employee{private$name;publicfunction__construct(string$name) {$this->name =$name; }publicfunctiongetName():string {return$this->name; }}$employee =newEmployee('John Doe');echo'Employee name:'.$employee->getName();// Employee name: John Doe
As stated famously inDesign Patterns by the Gang of Four,you should prefer composition over inheritance where you can. There are lots ofgood reasons to use inheritance and lots of good reasons to use composition.The main point for this maxim is that if your mind instinctively goes forinheritance, try to think if composition could model your problem better. In somecases it can.
You might be wondering then, "when should I use inheritance?" Itdepends on your problem at hand, but this is a decent list of when inheritancemakes more sense than composition:
- Your inheritance represents an "is-a" relationship and not a "has-a"relationship (Human->Animal vs. User->UserDetails).
- You can reuse code from the base classes (Humans can move like all animals).
- You want to make global changes to derived classes by changing a base class.(Change the caloric expenditure of all animals when they move).
Bad:
class Employee {private$name;private$email;publicfunction__construct(string$name,string$email) {$this->name =$name;$this->email =$email; }// ...}// Bad because Employees "have" tax data.// EmployeeTaxData is not a type of Employeeclass EmployeeTaxDataextends Employee {private$ssn;private$salary;publicfunction__construct(string$name,string$email,string$ssn,string$salary) {parent::__construct($name,$email);$this->ssn =$ssn;$this->salary =$salary; }// ...}
Good:
class EmployeeTaxData {private$ssn;private$salary;publicfunction__construct(string$ssn,string$salary) {$this->ssn =$ssn;$this->salary =$salary; }// ...}class Employee {private$name;private$email;private$taxData;publicfunction__construct(string$name,string$email) {$this->name =$name;$this->email =$email; }publicfunctionsetTaxData(string$ssn,string$salary) {$this->taxData =newEmployeeTaxData($ssn,$salary); }// ...}
AFluent interface is an objectoriented API that aims to improve the readability of the source code by usingMethod chaining.
While there can be some contexts, frequently builder objects, where thispattern reduces the verbosity of the code (for example thePHPUnit Mock Builderor theDoctrine Query Builder),more often it comes at some costs:
- BreaksEncapsulation.
- BreaksDecorators.
- Is harder tomock in a test suite.
- Makes diffs of commits harder to read.
For more informations you can read the fullblog poston this topic written byMarco Pivetta.
Bad:
class Car{private$make ='Honda';private$model ='Accord';private$color ='white';publicfunctionsetMake(string$make):self {$this->make =$make;// NOTE: Returning this for chainingreturn$this; }publicfunctionsetModel(string$model):self {$this->model =$model;// NOTE: Returning this for chainingreturn$this; }publicfunctionsetColor(string$color):self {$this->color =$color;// NOTE: Returning this for chainingreturn$this; }publicfunctiondump():void {var_dump($this->make,$this->model,$this->color); }}$car = (newCar()) ->setColor('pink') ->setMake('Ford') ->setModel('F-150') ->dump();
Good:
class Car{private$make ='Honda';private$model ='Accord';private$color ='white';publicfunctionsetMake(string$make):void {$this->make =$make; }publicfunctionsetModel(string$model):void {$this->model =$model; }publicfunctionsetColor(string$color):void {$this->color =$color; }publicfunctiondump():void {var_dump($this->make,$this->model,$this->color); }}$car =newCar();$car->setColor('pink');$car->setMake('Ford');$car->setModel('F-150');$car->dump();
Thefinal
should be used whenever possible:
- It prevents uncontrolled inheritance chain.
- It encouragescomposition.
- It encourages theSingle Responsibility Pattern.
- It encourages developers to use your public methods instead of extending the class to get access on protected ones.
- It allows you to change your code without any break of applications that use your class.
The only condition is that your class should implement an interface and no other public methods are defined.
For more informations you can readthe blog post on this topic written byMarco Pivetta (Ocramius).
Bad:
finalclass Car{private$color;publicfunction__construct($color) {$this->color =$color; }/** * @return string The color of the vehicle */publicfunctiongetColor() {return$this->color; }}
Good:
interface Vehicle{/** * @return string The color of the vehicle */publicfunctiongetColor();}finalclass Carimplements Vehicle{private$color;publicfunction__construct($color) {$this->color =$color; }/** * {@inheritdoc} */publicfunctiongetColor() {return$this->color; }}
SOLID is the mnemonic acronym introduced by Michael Feathers for the first five principles named by Robert Martin, which meant five basic principles of object-oriented programming and design.
- 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)
As stated in Clean Code, "There should never be more than one reason for a classto change". It's tempting to jam-pack a class with a lot of functionality, likewhen you can only take one suitcase on your flight. The issue with this isthat your class won't be conceptually cohesive and it will give it many reasonsto change. Minimizing the amount of times you need to change a class is important.It's important because if too much functionality is in one class and you modify a piece of it,it can be difficult to understand how that will affect other dependent modules inyour codebase.
Bad:
class UserSettings{private$user;publicfunction__construct(User$user) {$this->user =$user; }publicfunctionchangeSettings(array$settings):void {if ($this->verifyCredentials()) {// ... } }privatefunctionverifyCredentials():bool {// ... }}
Good:
class UserAuth {private$user;publicfunction__construct(User$user) {$this->user =$user; }publicfunctionverifyCredentials():bool {// ... }}class UserSettings {private$user;private$auth;publicfunction__construct(User$user) {$this->user =$user;$this->auth =newUserAuth($user); }publicfunctionchangeSettings(array$settings):void {if ($this->auth->verifyCredentials()) {// ... } }}
As stated by Bertrand Meyer, "software entities (classes, modules, functions,etc.) should be open for extension, but closed for modification." What does thatmean though? This principle basically states that you should allow users toadd new functionalities without changing existing code.
Bad:
abstractclass Adapter{protected$name;publicfunctiongetName():string {return$this->name; }}class AjaxAdapterextends Adapter{publicfunction__construct() {parent::__construct();$this->name ='ajaxAdapter'; }}class NodeAdapterextends Adapter{publicfunction__construct() {parent::__construct();$this->name ='nodeAdapter'; }}class HttpRequester{private$adapter;publicfunction__construct(Adapter$adapter) {$this->adapter =$adapter; }publicfunctionfetch(string$url):Promise {$adapterName =$this->adapter->getName();if ($adapterName ==='ajaxAdapter') {return$this->makeAjaxCall($url); }elseif ($adapterName ==='httpNodeAdapter') {return$this->makeHttpCall($url); } }privatefunctionmakeAjaxCall(string$url):Promise {// request and return promise }privatefunctionmakeHttpCall(string$url):Promise {// request and return promise }}
Good:
interface Adapter{publicfunctionrequest(string$url):Promise;}class AjaxAdapterimplements Adapter{publicfunctionrequest(string$url):Promise {// request and return promise }}class NodeAdapterimplements Adapter{publicfunctionrequest(string$url):Promise {// request and return promise }}class HttpRequester{private$adapter;publicfunction__construct(Adapter$adapter) {$this->adapter =$adapter; }publicfunctionfetch(string$url):Promise {return$this->adapter->request($url); }}
This is a scary term for a very simple concept. It's formally defined as "If Sis a subtype of T, then objects of type T may be replaced with objects of type S(i.e., objects of type S may substitute objects of type T) without altering anyof the desirable properties of that program (correctness, task performed,etc.)." That's an even scarier definition.
The best explanation for this is if you have a parent class and a child class,then the base class and child class can be used interchangeably without gettingincorrect results. This might still be confusing, so let's take a look at theclassic Square-Rectangle example. Mathematically, a square is a rectangle, butif you model it using the "is-a" relationship via inheritance, you quicklyget into trouble.
Bad:
class Rectangle{protected$width =0;protected$height =0;publicfunctionsetWidth(int$width):void {$this->width =$width; }publicfunctionsetHeight(int$height):void {$this->height =$height; }publicfunctiongetArea():int {return$this->width *$this->height; }}class Squareextends Rectangle{publicfunctionsetWidth(int$width):void {$this->width =$this->height =$width; }publicfunctionsetHeight(int$height):void {$this->width =$this->height =$height; }}functionprintArea(Rectangle$rectangle):void{$rectangle->setWidth(4);$rectangle->setHeight(5);// BAD: Will return 25 for Square. Should be 20.echosprintf('%s has area %d.',get_class($rectangle),$rectangle->getArea()).PHP_EOL;}$rectangles = [newRectangle(),newSquare()];foreach ($rectanglesas$rectangle) {printArea($rectangle);}
Good:
The best way is separate the quadrangles and allocation of a more general subtype for both shapes.
Despite the apparent similarity of the square and the rectangle, they are different.A square has much in common with a rhombus, and a rectangle with a parallelogram, but they are not subtype.A square, a rectangle, a rhombus and a parallelogram are separate shapes with their own properties, albeit similar.
interface Shape{publicfunctiongetArea():int;}class Rectangleimplements Shape{private$width =0;private$height =0;publicfunction__construct(int$width,int$height) {$this->width =$width;$this->height =$height; }publicfunctiongetArea():int {return$this->width *$this->height; }}class Squareimplements Shape{private$length =0;publicfunction__construct(int$length) {$this->length =$length; }publicfunctiongetArea():int { return$this->length **2; }}functionprintArea(Shape$shape):void{echosprintf('%s has area %d.',get_class($shape),$shape->getArea()).PHP_EOL;}$shapes = [newRectangle(4,5),newSquare(5)];foreach ($shapesas$shape) {printArea($shape);}
ISP states that "Clients should not be forced to depend upon interfaces thatthey do not use."
A good example to look at that demonstrates this principle is forclasses that require large settings objects. Not requiring clients to set uphuge amounts of options is beneficial, because most of the time they won't needall of the settings. Making them optional helps prevent having a "fat interface".
Bad:
interface Employee{publicfunctionwork():void;publicfunctioneat():void;}class Humanimplements Employee{publicfunctionwork():void {// ....working }publicfunctioneat():void {// ...... eating in lunch break }}class Robotimplements Employee{publicfunctionwork():void {//.... working much more }publicfunctioneat():void {//.... robot can't eat, but it must implement this method }}
Good:
Not every worker is an employee, but every employee is a worker.
interface Workable{publicfunctionwork():void;}interface Feedable{publicfunctioneat():void;}interface Employeeextends Feedable, Workable{}class Humanimplements Employee{publicfunctionwork():void {// ....working }publicfunctioneat():void {//.... eating in lunch break }}// robot can only workclass Robotimplements Workable{publicfunctionwork():void {// ....working }}
This principle states two essential things:
- High-level modules should not depend on low-level modules. Both shoulddepend on abstractions.
- Abstractions should not depend upon details. Details should depend onabstractions.
This can be hard to understand at first, but if you've worked with PHP frameworks (like Symfony), you've seen an implementation of this principle in the form of DependencyInjection (DI). While they are not identical concepts, DIP keeps high-levelmodules from knowing the details of its low-level modules and setting them up.It can accomplish this through DI. A huge benefit of this is that it reducesthe coupling between modules. Coupling is a very bad development pattern becauseit makes your code hard to refactor.
Bad:
class Employee{publicfunctionwork():void {// ....working }}class Robotextends Employee{publicfunctionwork():void {//.... working much more }}class Manager{private$employee;publicfunction__construct(Employee$employee) {$this->employee =$employee; }publicfunctionmanage():void {$this->employee->work(); }}
Good:
interface Employee{publicfunctionwork():void;}class Humanimplements Employee{publicfunctionwork():void {// ....working }}class Robotimplements Employee{publicfunctionwork():void {//.... working much more }}class Manager{private$employee;publicfunction__construct(Employee$employee) {$this->employee =$employee; }publicfunctionmanage():void {$this->employee->work(); }}
Try to observe theDRY principle.
Do your absolute best to avoid duplicate code. Duplicate code is bad becauseit means that there's more than one place to alter something if you need tochange some logic.
Imagine if you run a restaurant and you keep track of your inventory: all yourtomatoes, onions, garlic, spices, etc. If you have multiple lists thatyou keep this on, then all have to be updated when you serve a dish withtomatoes in them. If you only have one list, there's only one place to update!
Often you have duplicate code because you have two or more slightlydifferent things, that share a lot in common, but their differences force youto have two or more separate functions that do much of the same things. Removingduplicate code means creating an abstraction that can handle this set of differentthings with just one function/module/class.
Getting the abstraction right is critical, that's why you should follow theSOLID principles laid out in theClasses section. Bad abstractions can beworse than duplicate code, so be careful! Having said this, if you can makea good abstraction, do it! Don't repeat yourself, otherwise you'll find yourselfupdating multiple places any time you want to change one thing.
Bad:
functionshowDeveloperList(array$developers):void{foreach ($developersas$developer) {$expectedSalary =$developer->calculateExpectedSalary();$experience =$developer->getExperience();$githubLink =$developer->getGithubLink();$data = [$expectedSalary,$experience,$githubLink ];render($data); }}functionshowManagerList(array$managers):void{foreach ($managersas$manager) {$expectedSalary =$manager->calculateExpectedSalary();$experience =$manager->getExperience();$githubLink =$manager->getGithubLink();$data = [$expectedSalary,$experience,$githubLink ];render($data); }}
Good:
functionshowList(array$employees):void{foreach ($employeesas$employee) {$expectedSalary =$employee->calculateExpectedSalary();$experience =$employee->getExperience();$githubLink =$employee->getGithubLink();$data = [$expectedSalary,$experience,$githubLink ];render($data); }}
Very good:
It is better to use a compact version of the code.
functionshowList(array$employees):void{foreach ($employeesas$employee) {render([$employee->calculateExpectedSalary(),$employee->getExperience(),$employee->getGithubLink() ]); }}
This is also available in other languages:
- 🇨🇳Chinese:
- 🇷🇺Russian:
- 🇪🇸Spanish:
- 🇧🇷Portuguese:
- 🇹🇭Thai:
- 🇫🇷French:
- 🇻🇳Vietnamese
- 🇰🇷Korean: