English 中文(简体)
例外——案件错误
原标题:Exception - instance error
  • 时间:2011-09-22 12:11:12
  •  标签:
  • php

当你开始追捕例外和例外情形时,自动载荷控制器的错误流行:

Argument 1 passed to Controller_Exception:: __construct () must be an instance of Autoloader_Exception, string given, Called in  source 


try {} catch (Autoloader_Exception $ e){ throw new Controller_Exception ( Some Error );  }}

Controller_Exception class { public function __construct ($ Autoloader_Exception e) { } }

问题2,我如何建立例外类别? 是否有任何人知道一个很好的例子?

问题回答

第一个问题是,你正在使用。

new Controller_Exception ( Some Error )

根据错误信息,Error必须是一名自动载荷_Exception。 取决于你们想要做些什么:

new Controller_Exception ($e)

关于第二个问题,你可以读到如何设定自己的例外:here





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签