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
PHPひとめぐり
Search
Sponsored
·
Ship Features Fearlessly
Turn features on and off without deploys. Used by thousands of Ruby developers.
→
らいあ
October 01, 2016
Programming
0
41
PHPひとめぐり
らいあ
October 01, 2016
Tweet
Share
More Decks by らいあ
See All by らいあ
GoのDBライブラリについて調べてみた
ryer
0
600
shimanego3-lt.pdf
ryer
0
440
PageSpeed基礎知識
ryer
0
63
PHPとDBの常識的な話
ryer
0
140
関西ソーシャルゲーム勉強会のご紹介
ryer
0
55
Other Decks in Programming
See All in Programming
20260313 - Grafana & Friends Taipei #1 - Kubernetes v1.36 的開發雜記:那些困在 Alpha 加護病房太久的 Metrics
tico88612
0
200
社内規程RAGの精度を73.3% → 100%に改善した話
oharu121
13
8.1k
Codex の「自走力」を高める
yorifuji
0
1.2k
受け入れテスト駆動開発(ATDD)×AI駆動開発 AI時代のATDDの取り組み方を考える
kztakasaki
2
590
脱 雰囲気実装!AgentCoreを良い感じにWEBアプリケーションに組み込むために
takuyay0ne
1
100
エンジニアの「手元の自動化」を加速するn8n 2026.02.27
symy2co
0
160
AI時代のシステム設計:ドメインモデルで変更しやすさを守る設計戦略
masuda220
PRO
5
1k
モジュラモノリスにおける境界をGoのinternalパッケージで守る
magavel
0
3.6k
CSC307 Lecture 15
javiergs
PRO
0
250
Claude Code Skill入門
mayahoney
0
400
AIとペアプロして処理時間を97%削減した話 #pyconshizu
kashewnuts
1
240
Go 1.26でのsliceのメモリアロケーション最適化 / Go 1.26 リリースパーティ #go126party
mazrean
1
410
Featured
See All Featured
Being A Developer After 40
akosma
91
590k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
35
3.4k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
141
35k
Producing Creativity
orderedlist
PRO
348
40k
Building Applications with DynamoDB
mza
96
7k
Product Roadmaps are Hard
iamctodd
PRO
55
12k
Making Projects Easy
brettharned
120
6.6k
Lessons Learnt from Crawling 1000+ Websites
charlesmeaden
PRO
1
1.1k
Visualization
eitanlees
150
17k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
666
130k
Organizational Design Perspectives: An Ontology of Organizational Design Elements
kimpetersen
PRO
1
640
Redefining SEO in the New Era of Traffic Generation
szymonslowik
1
240
Transcript
None
None
None
None
None
None
None
None
None
None
ご安全に
None
None
None
$ /Applications/MAMP/bin/php/php7.0.10/bin/php -r “echo 123;” 123
None
None
# apt-get install –y php php-intl php- mbstring php-xdebug
deb http://packages.dotdeb.org jessie all
# wget https://www.dotdeb.org/dotdeb.gpg # apt-key add dotdeb.gpg # apt-get install
–y php php-intl php- mbstring php-xdebug
# yum install -y epel-release # yum install -y http://rpms.famillecollet.com/enterprise/remi-
release-6.rpm
# yum install --enablerepo=remi-php70 php php-intl php-mbstring php-xdebug
便利! $ php –S localhost:8000 => http://localhost:8000/
Rewrite!! $ php –S localhost:8000 –file api.php => http://localhost:8000/v1/user/8/
None
None
コンピュータに何のソフトウェアがインストールされたか を記録し、新しいソフトウェアのインストール・新しい バージョンへのソフトウェアの更新・以前インストールし たソフトウェアの削除を容易に行えるようにするプログラ ムです。 パッケージマネージャとは - Debian
None
None
None
$ php composer.phar --help 簡単 でしょ?
None
None
$ php composer.phar init
None
$ php composer.phar install ./composer.lock ./vendor/autoload.php ./vendor/*
None
None
$ php composer.phar update ./composer.lock ./vendor/autoload.php ./vendor/*
None
None
★やDL数 を参考に
None
None
None
None
None
None
None
None
None
None
var_dump($val);
None
文字通り「デバッグをするための専用の道具」。実行を一 時停止したり、変数の中身を見たり、色々なことができる。 たいていのプログラミング言語にはツールセットが備わっ ている。 http://e-words.jp/w/デバッガ.html
# apt-get install php-xdebug
None
プロファイラとは、動作中のプログラムがどの処理をどう いった順序で実行したかを監視するプログラム。コンパイ ラやデバッガなどと共に、プログラミング言語の開発環境 の一部として提供されることが多い。 http://e-words.jp/w/プロファイラ.html
None
None
ツール類の話は それだけで一日いります。 ハンズオンどうですか?
None
None
いつか 山陰も…
None
None