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
Introductory PHP Notes
Search
Mark Simon
May 28, 2017
Programming
0
49
Introductory PHP Notes
Additional Notes for PHP Course
Mark Simon
May 28, 2017
Tweet
Share
Other Decks in Programming
See All in Programming
詳解!defer panic recover のしくみ / Understanding defer, panic, and recover
convto
0
240
Vue・React マルチプロダクト開発を支える Vite
andpad
0
110
Testing Trophyは叫ばない
toms74209200
0
860
ソフトウェアテスト徹底指南書の紹介
goyoki
1
150
Updates on MLS on Ruby (and maybe more)
sylph01
1
180
「待たせ上手」なスケルトンスクリーン、 そのUXの裏側
teamlab
PRO
0
510
プロパティベーステストによるUIテスト: LLMによるプロパティ定義生成でエッジケースを捉える
tetta_pdnt
0
320
How Android Uses Data Structures Behind The Scenes
l2hyunwoo
0
440
go test -json そして testing.T.Attr / Kyoto.go #63
utgwkk
3
300
rage against annotate_predecessor
junk0612
0
170
今だからこそ入門する Server-Sent Events (SSE)
nearme_tech
PRO
3
180
Kiroで始めるAI-DLC
kaonash
2
580
Featured
See All Featured
YesSQL, Process and Tooling at Scale
rocio
173
14k
4 Signs Your Business is Dying
shpigford
184
22k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
234
17k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
23
1.4k
Context Engineering - Making Every Token Count
addyosmani
2
41
How to Think Like a Performance Engineer
csswizardry
26
1.9k
Optimising Largest Contentful Paint
csswizardry
37
3.4k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
53k
Product Roadmaps are Hard
iamctodd
PRO
54
11k
Gamification - CAS2011
davidbonilla
81
5.4k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
9
810
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
51
5.6k
Transcript
PHP Processing
PHP Script
PHP Root
Brackets Symbol Name () Parentheses {} Braces [] [Square] Brackets
$_FILES array $_FILES['image']['error'] ['type'] ['size'] ['name'] ['tmp_name'] $_FILES['resume']…
True & False Values true false n 0 '…' ''
[…] '' null
if if(…) … ; if(…) { … ; … ;
}
Equals Symbol Meaning Usage = Assignment new=old == equal? this==that?
=== identical this===that?