只在此山中,雲深不知處


聽首歌



© 2018 by Shawn Huang
Last Updated: 2018.5.27

Object

設計class來產生物件。
php5_1_class.php

static


當變數或方法使用static關鍵字修飾時,不需要產生(new)物件(instance)便可取得變數或使用方法。
php3_4_time.php

Inheritance

class可以繼承,使用關鍵字extends。
php5_2_inheritance.php

Visibility


php5_3_visibility.php

Magic Constants

Magic Constants是PHP內建的常數變數,會隨著出現位置有不同的值。其前後各有兩個底線。 php5_4_magicConstants.php