PHP学习方向整理(一)

好了,近期应要求,整理下PHP的学习方向,大家可以参考借鉴看看!

如果你现在处于以下几种状态,本资料非常适合你:

 

* 准备换工作,不知道从哪开始准备

* 技术遇到瓶颈,不知道该学什么

* 准备学 PHP,但不知道领域有多深

## 基础篇

* [了解大部分数组处理函数](http://php.net/manual/zh/ref.array.php)

* [字符串处理函数](http://php.net/manual/zh/ref.strings.php)  [区别 mb_ 系列函数](http://php.net/manual/zh/book.mbstring.php)

* [& 引用,结合案例分析](https://secure.php.net/manual/zh/language.references.php)

* [== 与 === 区别](https://stackoverflow.com/questions/80646/how-do-the-php-equality-double-equals-and-identity-triple-equals-comp)

* [isset 与 empty 区别](https://stackoverflow.com/questions/1219542/in-where-shall-i-use-isset-and-empty)

* [全部魔术函数理解](http://php.net/manual/zh/language.oop5.magic.php)

* [static、$this、self 区别](https://stackoverflow.com/questions/4718808/php-can-static-replace-self)

* private、protected、public、final 区别

* OOP 思想

* 抽象类、接口 分别使用场景

* [Trait 是什么东西](http://php.net/manual/zh/language.oop5.traits.php)

* [echo、print、print_r 区别(区分出表达式与语句的区别)](https://stackoverflow.com/questions/1647322/whats-the-difference-between-echo-print-and-print-r-in-php)

* [__construct 与 __destruct 区别](http://php.net/manual/zh/language.oop5.decon.php)

* static 作用(区分类与函数内)[手册](http://php.net/manual/zh/language.oop5.static.php) 、[SOF](https://stackoverflow.com/questions/7508284/static-variables-in-php)

* [__toString() 作用](http://php.net/manual/en/language.oop5.magic.php#object.tostring)

* [单引号`'`与双引号`"`区别](https://stackoverflow.com/questions/3446216/what-is-the-difference-between-single-quoted-and-double-quoted-strings-in-php#answer-3446286)

* [常见 HTTP 状态码,分别代表什么含义](https://zh.wikipedia.org/wiki/HTTP%E7%8A%B6%E6%80%81%E7%A0%81)

* [301](https://zh.wikipedia.org/wiki/HTTP_301) 什么意思 [404](https://zh.wikipedia.org/wiki/HTTP_404) 呢?

好了,今天的先推到这里,即将在微信公众号推送出进阶、高级等学习路线出来,小伙伴们动动手指关注,即将获得更“心”的知识 和 经验分享!

关注回复redis,获取redis原理锁的解析以及使用场景!

关注回复mysql,获取MySQL高级知识块!

关注回复nginx,获取NGINX的相关知识!

关注回复workerman,获取tp5相关的workerman知识!

轻轻关注,将推“心”的不错经验和知识!

原文地址:https://www.cnblogs.com/Jackey-fighting/p/9509383.html