Become a member
Sign in
Get started
Tuyen Vuong
Follow
Be in the middle
59 Following
10 Followers
·
Profile
Claps
Highlights
Responses
Latest
Tuyen Vuong
Mar 18
· 5 min read
ZCE — PHP Object Oriented Programing
PROPERTIES & METHODS:
Invalid property declaration (dynamic variables (., $, self, CONSTANT, $this))
Valid property declarations: number, string, null, array
Tuyen Vuong
Mar 18
· 4 min read
ZCE — PHP Security Quick Notes
Configurations:
error_reporting
= E_ALL & ~E_DEPRECATED; (when coding, enable also E_STRICT)
to disable error reporting entirely on the running code (
display_errors = off; log_errors = on; error_log=$path;
)