但出错时 ,如何让php脚本继续运行,

<?phpclassMyClass{public$prop1="I'maclassproperty!";publicfunction__construct(){echo'... <?php

class MyClass
{
public $prop1 = "I'm a class property!";

public function __construct()
{
echo 'The class "', __CLASS__, '" was initiated!<br />';
}

public function __destruct()
{
echo 'The class "', __CLASS__, '" was destroyed.<br />';
}

public function setProperty($newval)
{
$this->prop1 = $newval;
}

public function getProperty()
{
return $this->prop1 . "<br />";
}
}
// Create a new object
$obj = new MyClass;

// Output the object as a string
echo $obj;

// Destroy the object
unset($obj);

// Output a message at the end of the file
echo "End of file.<br />";

?>

问题:
运行这段代码会出错(Object of class MyClass could not be converted to string...),因为我没有用__toString(),我的问题是,如何让脚本继续运行,直到输出End of file.
展开
 我来答
若以下回答无法解决问题,邀请你更新回答
k401x
2013-05-13 · 超过10用户采纳过TA的回答
知道答主
回答量:77
采纳率:0%
帮助的人:37.8万
展开全部
请搜索:PHP中try{}catch{}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
农村户口流氓
2013-05-16
知道答主
回答量:12
采纳率:0%
帮助的人:1.6万
展开全部
你把unset函数去掉看看
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式