我需要能做类似这样的事情:
$arr = array(); // this is array where im storing data
$f = new MyRecord(); // I have __constructor in class Field() that sets some default values
$f->{'fid'} = 1;
$f->{'fvalue-string'} = $_POST['data'];
$arr[] = $f;
$f = new Field();
$f->{'fid'} = 2;
$f->{'fvalue-int'} = $_POST['data2'];
$arr[] = $f;
当我写这样的东西时:
$f = new Field(1, 'fvalue-string', $_POST['data-string'], $arr);
$f = new Field(2, 'fvalue-int', $_POST['data-integer'], $arr);
// description of parameters that i want to use:
// 1 - always integer, unique (fid property of MyRecord class)
// 'fvalue-int' - name of field/property in MyRecord class where next parameter will go
// 3. Data for field specified in previous parameter
// 4. Array where should class go
我不知道如何在PHP中创建参数化构造函数。
现在我使用这样的构造函数:
class MyRecord
{
function __construct() {
$default = new stdClass();
$default->{'fvalue-string'} = '';
$default->{'fvalue-int'} = 0;
$default->{'fvalue-float'} = 0;
$default->{'fvalue-image'} = ' ';
$default->{'fvalue-datetime'} = 0;
$default->{'fvalue-boolean'} = false;
$this = $default;
}
}
答案 0 :(得分:119)
阅读所有http://www.php.net/manual/en/language.oop5.decon.php
构造函数可以像php中的任何其他函数或方法一样获取参数
class MyClass {
public $param;
public function __construct($param) {
$this->param = $param;
}
}
$myClass = new MyClass('foobar');
echo $myClass->param; // foobar
您现在使用构造函数的示例甚至无法编译,因为您无法重新分配$this
。
此外,每次访问或设置属性时都不需要花括号。 $object->property
工作得很好。您只需要在特殊情况下使用花括号,例如需要评估方法$object->{$foo->bar()} = 'test';
答案 1 :(得分:20)
如果您想将数组作为参数传递,并且'auto'填充您的属性:
class MyRecord {
function __construct($parameters = array()) {
foreach($parameters as $key => $value) {
$this->$key = $value;
}
}
}
请注意,构造函数用于创建&初始化一个对象,因此可以使用$this
来使用/修改你正在构建的对象。