如何檢查我的對象是否返回false?我有以下類:PHP:OOP:返回False
class Test {
public function __construct($number) {
if($number != '1') {
return FALSE;
}
}
}
我已經試過:
$x = new Test('1');
$x = new Test('2');
但是,當我的var_dump($ X),我得到了相同的結果。我想做一個:
if(! $x = new Test('1')) {
header("location: xxx...");
}
參考線 - http://stackoverflow.com/questions/2214724/php-constructor- to-return-a-null – adatapost 2012-01-11 01:26:17