我刚开始学习 PHP,我对参数有一些疑问。考虑DateTime class
PHP DateTime 类手册
public __construct ([ string $time = "now" [, DateTimeZone $timezone = NULL ]] )
public DateTime setDate ( int $year , int $month , int $day )
这是我的问题:
- 为什么构造函数中的参数在括号中,而
setDate
参数不在括号中? - 为什么括号里面有括号?
- 为什么开括号前有逗号,
[,
?
提前致谢。