Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mizukiokushima/php8beginnerexam
PHP8技術者認定初級試験対策
https://github.com/mizukiokushima/php8beginnerexam
php8
Last synced: 24 days ago
JSON representation
PHP8技術者認定初級試験対策
- Host: GitHub
- URL: https://github.com/mizukiokushima/php8beginnerexam
- Owner: MizukiOkushima
- Created: 2023-10-21T11:14:11.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-20T12:24:20.000Z (about 1 year ago)
- Last Synced: 2023-11-20T14:26:59.785Z (about 1 year ago)
- Topics: php8
- Homepage: https://cbt.odyssey-com.co.jp/phpexam/php8_2.html
- Size: 94.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 独習PHP 第4版
![277139474-794dec01-5133-4b3a-9aef-dec73065caba](https://github.com/MizukiOkushima/PHP8BeginnerExam/assets/95268598/e063c8dd-f9c5-4830-a1c4-10b66ee9d6d2)## 第1章 イントロダクション
第一章に関してはPHPは何かという解説が多めで、環境構築の解説もある。
一度PHPに触れたり環境構築をした人はサラ読みでOK。## 第2章 PHPの基本
変数、定数、データ型、文字列の定義などの解説
他の言語を学んでいる場合、PHP独自の書き方や定義済み定数、ヒアドキュメント、true,falseになる暗黙な変換の値を見る程度でOK。## 第3章 演算子
各演算子について解説しているが、ある程度は他の言語と同じである。
PHPにはマジカルインクリメントがある。
また、PHPのバージョン8系と7系と5系で異なる比較結果があるため、念入りにチェックすること。## 第4章 制御構文
基本的に制御構文については他の言語と同じであるためサラ読みでもよいがPHPに沿った書き方もあるためチェックすること。
・foreachループの中で配列を直接操作するには仮変数を参照渡し「= &$変数名」する必要がある。
・PHP8で導入されたmatch式。