如何实现可以接受不同数量参数的php构造函数?
如何实现可以接受不同数量参数的php构造函数?
就像
class Person {
function __construct() {
// some fancy implementation
}
}
$a = new Person('John');
$b = new Person('Jane', 'Doe');
$c = new Person('John', 'Doe', '25');
在 php 中实现这个的最佳方法是什么?
谢谢, 米洛
How to implement php constructor that can accept different number of parameters?
Like
class Person {
function __construct() {
// some fancy implementation
}
}
$a = new Person('John');
$b = new Person('Jane', 'Doe');
$c = new Person('John', 'Doe', '25');
What is the best way to implement this in php?
Thanks,
Milo
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一种解决方案是使用默认值:
第二种是接受数组、关联数组或对象(有关关联数组的示例):
但在第二种情况下,应该这样传递:
第三个选项已由 tandu:
编辑:粘贴在这里我能够从tandu的原始答案中检索到的内容(现在:Explosion药丸)。
One solution is to use defaults:
The second one is to accept array, associative array or object (example about associative array):
But in the second case it should be passed like this:
The third option has been pointed by tandu:
EDIT: Pasted here what I was able to retrieve from original answer by tandu (now: Explosion Pills).
更新的答案:
结果:
先前的答案:
结果:
Updated Answer:
Result:
Previous Answer:
Result: