
PHP
QianKun_Zhang
永远不承认被打败的人
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
trait中的属性类型
PHP没有多继承机制,trait为此提供了解决方案。 类中的属性类型public protected private 在trait中仍然适用。 trait PropertiesTrait { protected $x = 1; } class PropertiesExample { use PropertiesTrait; public function setProperty($va原创 2016-02-20 09:20:37 · 333 阅读 · 0 评论 -
PHPer必知必会
php程序员必知必会的一些基础知识,面试必备原创 2017-10-20 18:47:54 · 1890 阅读 · 0 评论