Questions tagged «fatal-error»

一个错误,无论使用哪种编程语言,都会导致程序中止。

17
如何捕获PHP致命错误(“ E_ERROR”)?
我可以set_error_handler()用来捕获大多数PHP错误,但不适用于致命(E_ERROR)错误,例如调用不存在的函数。还有另一种捕获这些错误的方法吗? 我正在尝试要求mail()所有错误,并且正在运行PHP 5.2.3。
557 php  fatal-error 

11
致命错误:找不到类“ SoapClient”
我正在尝试一个简单的Web服务示例,即使extension=php_soap.dll在php.ini文件中未添加注释,我也会收到此错误: 致命错误:在第2行的C:\ Program Files(x86)\ EasyPHP-5.3.9 \ www \ server.php中找不到类'SoapClient'
202 php  soap  fatal-error 

12
奇怪的PHP错误:“无法在写入上下文中使用函数返回值”
我收到此错误,无法显示它的开头或结尾。 确切的错误消息是: 致命错误:在第48行的/home/curricle/public_html/descarga/index.php中的写入上下文中无法使用函数返回值 第48行是: if (isset($_POST('sms_code') == TRUE ) { 这可能是怎么回事? 这是全部功能: function validate_sms_code() { $state = NOTHING_SUBMITED; if (isset($_POST('sms_code') == TRUE ) { $sms_code = clean_up($_POST('sms_code')); $return_code = get_sepomo_code($sms_code); switch($return_code) { case 1: //no error $state = CORRECT_CODE; break; case 2: // code already used $state = CODE_ALREADY_USED; break; …
178 php  fatal-error 


30
java.lang.RuntimeException:无法实例化活动ComponentInfo
我试图运行示例代码,在android 1.5模拟器中启动应用程序时,出现了这些错误...。有人提示吗..? LogCat错误: 01-13 02:28:08.392: ERROR/AndroidRuntime(2888): FATAL EXCEPTION: main 01-13 02:28:08.392: ERROR/AndroidRuntime(2888): java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{com.s.android.test/com.s.android.test.MainActivity}: java.lang.ClassNotFoundException: com.s.android.test.MainActivity in loader dalvik.system.PathClassLoader[/data/app/com.s.android.test-2.apk] 01-13 02:28:08.392: ERROR/AndroidRuntime(2888): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1544) 01-13 02:28:08.392: ERROR/AndroidRuntime(2888): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1638) 01-13 02:28:08.392: ERROR/AndroidRuntime(2888): at android.app.ActivityThread.access$1500(ActivityThread.java:117) 01-13 02:28:08.392: ERROR/AndroidRuntime(2888): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:928) 01-13 02:28:08.392: ERROR/AndroidRuntime(2888): at android.os.Handler.dispatchMessage(Handler.java:99) 01-13 02:28:08.392: …

9
PHP致命错误:不在对象上下文中时使用$ this
我有一个问题: 我正在编写没有框架的新WebApp。 在我的index.php中,我正在使用:require_once('load.php'); 在load.php中,我require_once('class.php');用来加载class.php。 在我的class.php中,出现此错误: 致命错误:如果不在类的上下文中,则在行上使用$ this ...(在此示例中为11) 我的class.php的编写示例: class foobar { public $foo; public function __construct() { global $foo; $this->foo = $foo; } public function foobarfunc() { return $this->foo(); } public function foo() { return $this->foo; } } 在我的index.php中,我正在加载的可能foobarfunc()是这样的: foobar::foobarfunc(); 但也可以是 $foobar = new foobar; $foobar->foobarfunc(); 为什么会出现错误?


4
require_once中的相对路径不起作用
我有以下结构 otsg > class > authentication.php > database.php > user.php > include > config.inc.php > encryption.php > include.php > session.php > index.php > registration.php include.php文件具有以下内容 ini_set('display_errors', 1); error_reporting(E_ALL); ini_set('include_path',ini_get('include_path').':/Applications/MAMP/htdocs/otsg/:'); require_once 'config.inc.php'; require_once '../class/database.php'; require_once '../class/user.php'; require_once 'encryption.php'; require_once 'session.php'; require_once '../class/authentication.php'; 并且在index.php页面中,我包括了 require_once 'include/include.php'; 当我打开页面index.php时,出现以下警告和致命错误。我不明白是什么原因导致此错误。当我给出绝对路径时,它可以工作。但是我相信绝对的路线不是一个好主意。 Warning: require_once(../class/database.php) [function.require-once]: failed to …

1
如何在PHP类型提示中捕获“可捕获的致命错误”?
我正在尝试在我的一个课程中实现PHP5的类型提示, class ClassA { public function method_a (ClassB $b) {} } class ClassB {} class ClassWrong{} 正确用法: $a = new ClassA; $a->method_a(new ClassB); 产生错误: $a = new ClassA; $a->method_a(new ClassWrong); 可捕获的致命错误:传递给ClassA :: method_a()的参数1必须是ClassB的实例,给定ClassWrong的实例... 是否有可能捕获到该错误(因为它说“可捕获”)?如果是的话,如何?

10
PHP注意:未定义偏移:读取数据时带有数组的1
我收到此PHP错误: PHP Notice: Undefined offset: 1 这是抛出它的PHP代码: $file_handle = fopen($path."/Summary/data.txt","r"); //open text file $data = array(); // create new array map while (!feof($file_handle) ) { $line_of_text = fgets($file_handle); // read in each line $parts = array_map('trim', explode(':', $line_of_text, 2)); // separates line_of_text by ':' trim strings for extra space $data[$parts[0]] …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.