Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
How to be a better PHP Developer
Search
大澤木小鐵
January 12, 2013
Programming
62
39k
How to be a better PHP Developer
WebConf Taiwan 2013 議程簡報
大澤木小鐵
January 12, 2013
Tweet
Share
More Decks by 大澤木小鐵
See All by 大澤木小鐵
Effective Unit Testing
jaceju
3
550
JSConf Asia 2014 Sessions
jaceju
4
390
What happens in Laravel 4 bootstraping
jaceju
9
550
Deal with Laravel assets by Bower & Gulp
jaceju
30
1.9k
Leaning MVC By Example
jaceju
0
350
ng-conf_2014
jaceju
2
970
The Power of JavaScript in JSConf.Asia 2013
jaceju
5
370
jQuery vs AngularJS, dochi?
jaceju
20
2.9k
Begining Composer
jaceju
24
5k
Other Decks in Programming
See All in Programming
Nuxtベースの「WXT」でChrome拡張を作成する | Vue Fes 2024 ランチセッション
moshi1121
1
510
開発効率向上のためのリファクタリングの一歩目の選択肢 ~コード分割~ / JJUG CCC 2024 Fall
ryounasso
0
360
Kubernetes for Data Engineers: Building Scalable, Reliable Data Pipelines
sucitw
1
200
Go言語でターミナルフレンドリーなAIコマンド、afaを作った/fukuokago20_afa
monochromegane
2
140
外部システム連携先が10を超えるシステムでのアーキテクチャ設計・実装事例
kiwasaki
1
220
『ドメイン駆動設計をはじめよう』のモデリングアプローチ
masuda220
PRO
7
430
Synchronizationを支える技術
s_shimotori
1
150
Golang と Erlang
taiyow
8
1.9k
Vue3の一歩踏み込んだパフォーマンスチューニング2024
hal_spidernight
3
3.1k
Vue.js学習の振り返り
hiro_xre
2
130
約9000個の自動テストの 時間を50分->10分に短縮 Flakyテストを1%以下に抑えた話
hatsu38
23
11k
推し活の ハイトラフィックに立ち向かう Railsとアーキテクチャ - Kaigi on Rails 2024
falcon8823
6
2.2k
Featured
See All Featured
Why You Should Never Use an ORM
jnunemaker
PRO
53
9k
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
27
790
Into the Great Unknown - MozCon
thekraken
31
1.5k
It's Worth the Effort
3n
183
27k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
228
52k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
7
150
Typedesign – Prime Four
hannesfritz
39
2.4k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
364
22k
Designing Experiences People Love
moore
138
23k
Done Done
chrislema
181
16k
Large-scale JavaScript Application Architecture
addyosmani
510
110k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
47
5k
Transcript
jaceju@webconf 2013 如何成為更好的 PHP 開發者 磚業也要專業
Jace Ju 大澤木小鐵 http://plurk.com/jaceju http://twitter.com/jaceju http://weibo.com/jaceju http://www.jaceju.net
[email protected]
新浪微博軟體工程師 PHP
開發者
匠
牆
塌
老闆的想法
微薪 技佳
PHP 的困境 不需要高門檻 大量舊資訊充斥 社群過於多元化
捫心自問 我們真的瞭解 PHP 嗎 要不要繼續學 PHP
第一式 瞭解 PHP
門
瞭解新版本 4.x → 5.x http://php.net/manual/en/migration5.php 5.2 → 5.3 http://php.net/manual/en/migration53.php
瞭解運作環境 Error Reporting Session Save Path Web Server OS
瞭解執行模式 Web 執行模式 命令列執行模式
瞭解語法 // 交換變數內容 list($a, $b) = array($b, $a); // 直接取得指定位置的值
list( , $el) = getElements(); // PHP 5.4 :⽤用⽅方括號來直接取⽤用元素 $el = getElements()[1];
瞭解原生函式 // Bad $diff_ids = array(); foreach ($ids as $id)
{ if (!in_array($id, $actual_ids)) { $diff_ids[] = $id; } } // Good $diff_ids = array_diff($ids, $actual_ids);
瞭解技術原理������� HTTP 協定 資料庫存取 檔案存取 ...
學會 SPL 及內建介面 Standard PHP Library http://www.php.net/manual/en/book.spl.php Predefined Interfaces http://www.php.net/manual/en/reserved.interfaces.php
第二式 開發工具
編輯器 語法高亮度 自動完成 API 查詢 函式或類別方法的查找 其他工具的整合
NetBeans for PHP http://netbeans.org/
Eclipse PDT http://www.eclipse.org/projects/project.php?id=tools.pdt
除錯工具 中斷點設置 完整執行堆棧資訊 變數內容追蹤 .........
Xdebug http://xdebug.org/
FirePHP http://www.firephp.org/
版本控制 歷史紀錄 還原版本 解決衝突 支線版本
GitHub http://github.com/
Git 教育訓練課程投影片 http://ihower.tw/blog/archives/6696/
程式碼等級 一,,,要能對得起自己的良心 二,,,不能考驗測試人員的耐心 三,,,要能得到上頭的歡心 四,,,要能獲得客戶的信心 五,,,要能受到其他開發者的關心
第三式 成為團隊一份子
群
良好的程式架構 使用 Framework 減少溝通成本 減少開發成本
遵守編碼標準 統一團隊編碼風格 PHP-FIG https://github.com/php-fig/fig-standards
套件管理������� 避免套件散落各地 統一套件載入方式 Composer http://getcomposer.org/ https://packagist.org/
第四式 學會把程式寫活
Any fool can write code that a computer can understand.
Good programmers write code that humans can understand. Martin Fowler
以抽象角度看事物 // 找出特定作者的所有⽂文章 $sql = 'SELECT * FROM articles WHERE
'; $sql .= 'author = :author'; $sth = $dbh->prepare($sql); $sth->execute(array( ':author' => 'jaceju' )); $articles = $sth->fetchAll();
以抽象角度看事物 // 找出特定作者的所有⽂文章 $blog = new Blog(); $articles = $blog->fetchArticlesByAuthor('jaceju');
讓程式容易佈署 <?php include '/home/web/my/config.php';
讓程式容易佈署 <?php include __DIR__ . '/config.php'; // 假設 __DIR__ 在執⾏行時期的值為
// "/home/web/my"
一開始做對系統純屬神話 要將系統寫活來應付變化
組 合
讓系統可以被擴充 統一抽象介面 定義插入點 Template Method / Observer 模組化設計 管理�������介面
協
第五式 自我要求
注意安全 SQL Injection Cross Site Script (XSS) Cross Site Request
Forgery (CSRF)
Filter Input, Escape Output 不要信任瀏覽器所回傳的資訊 也不要直接輸出敏感的資訊
開發時嚴格 上線時寬鬆 解決掉所有警告與錯誤 隱藏但紀錄線上環境的 錯誤訊息
天下網站 無堅不摧 唯快不破
第六式 效能
原則 不做重複的事 放到背景執行 空間換取時間 執行路徑越短越好 保持輕量化 必要時才初始化 有異動才更新 資料少時全抓 資料多時分段抓
事先計算 善用快取
不做重複的事 function fib($n) { if ($n < 2) return $n;
$f[$n] = fib($n - 2) + fib($n - 1); return $f[$n]; } echo fib(30), "\n"; // 結果: 832040 ,共執⾏行 5.59556889534 秒
不做重複的事 function fib($n) { static $f = array(); if (isset($f[$n]))
return $f[$n]; if ($n < 2) return $n; $f[$n] = fib($n - 2) + fib($n - 1); return $f[$n]; } echo fib(30), "\n"; // 結果: 832040 ,共執⾏行 0.002144813537 秒
奧巴馬籌款網站的製作過程 http://www.ruanyifeng.com/blog/2012/12/ obama_fundraising_website.html
第七式 強健的程式碼
測試 確保系統舊有功能的完整 建立問題發生的情境
自動化測試框架 PHPUnit http://www.phpunit.de/ PHPSpec http://www.phpspec.net/ Behat http://behat.org/
重構 不是打掉重練 防止程式碼腐敗 搭配測試實行 Refactoring - Martin Fowler
第八式 不要只學寫程式碼
系統管理������� 系統安裝 Shell Script Service 管理������� 排程設定
學習使用雲端服務 AWS Linode Heroku ...
學習使用雲端服務 Hosting Plan http://blog.gslin.org/archives/2012/04/19/2865/ hosting-plan/ Startup : 如何挑選適合的 Hosting Plan?
http://blog.xdite.net/posts/2012/04/18/startup- hosting-plan/
學習其它語言 JavaScript (Browser) Perl / Python / Ruby / Node.js
C English
眼 神 死
關注國外資訊 PHP Master http://phpmaster.com/ nettuts+ http://net.tutsplus.com/category/tutorials/php/ PHP Mailing Lists http://php.net/mailing-lists.php
第九式 學會用輪子 也要學會造輪子
https://github.com/c9s c9s
PHPConf Taiwan 2013 http://phpconf.tw/
不要只問 自己勤練 真正的功夫
謝謝大家 版權所有.翻印必舊 - 定價 50 元 -