您好,登錄后才能下訂單哦!
這篇文章主要介紹“PHP和Java代碼實例分析”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“PHP和Java代碼實例分析”文章能幫助大家解決問題。
案例1
function getGoods($query, $shopId) { $goodsId = Goods::add($query["uid"], $query["name"]); return Shop::add($goodsId, $shopId); } class Goods { public static function add($uid, $name) { $id = mt_rand(1, 100000); return $id; } } class Shop { public static function add($goodsId, $shopId) { $id = mt_rand(1, 100000); return $id; } }
案例2
function getUserInfo($teamId, $youId = []) { }
如果僅僅有這個函數名和參數名,誰能猜到參數的意義呢?
案例3
class Db { /** * @param string $table 數據庫表名 * @param array $data 新增數據 * * @return int 新增主鍵 */ public static function insert(string $table, array $data) { $id = mt_rand(1, 1000); return $id; } } class ViewLogStore { private $table = "view_log"; function setHistory($data) { Db::insert($this->table, $data); } }
案例4
假如業務代碼里有這些類
class WechatUserModel{ } class WechatGroupModel{ } class WechatMessageModel{ }
而我們查詢數據庫發現
這樣我們根據業務代碼就非常不方便找到對應的表,而且其他人接手我們項目的時候,也會摸不著頭腦。或者說這可能是三個人三次迭代開發造成的,那么他們彼此都沒有去參考前面人的命名規則。
說完命名,下面說下注釋。注釋里還有什么學問?Are you kidding me?
一個數組對象成員,你知道怎么寫嗎?
類的魔術方法調用的注釋,你知道怎么寫嗎?
/** * @var Ads[] */ public $adsList = [];
$blocks = [];/** @var $blocks Block[] **/
@method 的使用
/** * @link http://manual.phpdoc.org/HTMLframesConverter/default/ * * @method static int search(string $query, $limit = 10, $offset = 0) */ class SearchServiceProxy { public static function __callStatic($method, $arguments) { if (!method_exists("SearchService", $method)) { throw new \LogicException(__CLASS__ . "::" . $method . " not found"); } try { $data = call_user_func_array(["SearchService", $method], $arguments); } catch (\Exception $e) { error_log($e->getMessage()); return false; } return $data; } }
@deprecated 使用
class SearchService { /** * @param string $query * @param int $limit * @param int $offset * * @return array * @deprecated */ public static function search(string $query, $limit = 10, $offset = 0) { return [ ["id" => 1, "aaa"], ["id" => 2, "bbb"], ]; } }
注釋解釋張冠李戴,方法名更新,方法的功能業務注釋沒更新;復制別人的代碼把 @author 信息也復制過來了,錯誤了還要把鍋甩給別人。
注釋更多參考 http://manual.phpdoc.org/HTML...
案例1
先說明一句,不好的代碼不妨礙它成為一個優秀的軟件。PHP MySQL 爛代碼多的去了。
找到一個開源軟件里面的代碼,功能非常搶到,但是這個方法內容太多,一些不足點我標注出來了。
案例2
拿上面我舉例子,還記得下面這種圖嗎?
優化方案1
class ArrayUtils{ public static function fetch($arr, $keys, $setNull = false) { $ret = array(); foreach($keys as $key) { if ($setNull) { $ret[$key] = $arr[$key]; } else { isset($arr[$key]) && $ret[$key] = $arr[$key]; } } return $ret; } } class ViewLogStore { private $table = "view_log"; function record($data) { $fields = array( 'uid', 'url', 'referer', 'created_time' ); $data = ArrayUtils::fetch($data, $fields); Db::insert($this->table, $data); } }
優化方案2
class Db { /** * @param string $table 數據庫表名 * @param Entity $data 新增對象 * * @return int 新增主鍵 */ public static function insert(string $table, Entity $data) { $array = $data->toArray(); var_export($array); // test $id = mt_rand(1, 1000); return $id; } } class ArrayUtils { /** * 針對成員都是私有屬性的對象 * * @param $obj * @param bool $removeNull 去掉空值 * @param bool $camelCase * * @return array */ public static function Obj2Array($obj, $removeNull = true, $camelCase = true) { $reflect = new \ReflectionClass($obj); $props = $reflect->getProperties(\ReflectionProperty::IS_PUBLIC | \ReflectionProperty::IS_PRIVATE | \ReflectionProperty::IS_PROTECTED); $array = []; foreach ($props as $prop) { $prop->setAccessible(true); $key = $prop->getName(); // 如果不是駝峰命名方式,就把對象里面的 createTime 轉成 create_time if (!$camelCase) { $key = preg_replace_callback("/[A-Z]/", function ($matches) { return "_" . strtolower($matches[0]); }, $key); $key = ltrim($key, "_"); } $value = $prop->getValue($obj); if ($removeNull == true && $value === null) { continue; } if (is_object($value)) { $value = self::Obj2Array($value); } $array[$key] = $value; } return $array; } } class Entity { public function toArray(){ return ArrayUtils::Obj2Array($this); } } class ViewLogEntity extends Entity { /** * @var int */ private $uid; /** * @var string */ private $url; /** * @var string */ private $referer; /** * @var string */ private $createdTime; /** * @param int $uid */ public function setUid(int $uid) { $this->uid = $uid; } /** * @param string $url */ public function setUrl(string $url) { $this->url = $url; } /** * @param string $referer */ public function setReferer(string $referer) { $this->referer = $referer; } /** * @param string $createdTime */ public function setCreatedTime(string $createdTime) { $this->createdTime = $createdTime; } } class ViewLogStore { private $table = "view_log"; function record(ViewLogEntity $viewLogEntity) { Db::insert($this->table, $viewLogEntity); } } // 測試 $viewLogEntity = new ViewLogEntity(); $viewLogEntity->setUid(1); $viewLogEntity->setReferer("https://mengkang.net"); $viewLogEntity->setUrl("https://segmentfault.com/l/1500000018225727"); $viewLogEntity->setCreatedTime(date("Y-m-d H:i:s",time())); $viewLogStore = new ViewLogStore(); $viewLogStore->record($viewLogEntity);
案例3
這還是函數嗎?(不僅僅是語義,屬于錯誤)
/** * @method mixed fetchList(string $sql, array $argv); */ class Model { public function __construct($table) { } } function getUserList($startId, $lastId, $limit = 100) { if ($lastId > 0) { $startId = $lastId; } $sql = "select * from `user` where id > ? order by id asc limit ?,?"; $model = new Model('user'); return $model->fetchList($sql, [intval($startId), intval($limit)]); }
$startId和$lastId兩個參數重復
案例4
盡量減少參數引用
function bad($input1, $input2, &$input3) { //...logic $input3 = "xxx"; return true; }
案例5
參數類型明確,返回值類型明確,不要出現 mixed。這個我直接拿官方的函數來舉例,對權威也要有懷疑的眼光。純屬個人看法。
案例6
上面例子中你會發現這個addUser寫得不想一個函數(方法)而像一個遠程api接口。而且在右邊的代碼中需要每次使用的時候都要用is_array來判斷。這是非常不友好的語義表達。PHP Java 這樣的高級語言有異常,我們要善用異常。
關于“PHP和Java代碼實例分析”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。