我想指定可以赋予函数的数据类型。
在此演示代码(作为示例)中,我想指定给"__construct()"
函数的参数的数据类型,以便它只INT
需要$id
和的Objects
类型"example2"
。$some_object
你知道我怎么能做到这一点吗?
<?php
class example1{
private $id;
private $example2;
function __construct($id,$some_object){
$this->id = $id;
$this->object = $some_object;
}
function do_something(){
$this->example2->moep();
}
}
class example2{
public function moep(){
print("MOEP!!!");
}
}
?>