菜单

__destruct函数引起return失效

2013年02月22日 - php

当在一个function中new一个包含__destruct的对象时,如果__destruct中exit; 将导致function return value失效.

function __destruct() {
	$this->isFinalized = true;
	$cd = null;
	$this->cdRec = null;
	//exit;
}

发表评论

电子邮件地址不会被公开。 必填项已用*标注