php-src/tests/run-test/test008a.phpt
2008-05-26 15:52:06 +00:00

33 lines
877 B
PHP

--TEST--
Error message handling (without ZendOptimizer)
--SKIPIF--
<?php
if (extension_loaded("Zend Optimizer")) die("skip Zend Optimizer is loaded");
?>
--FILE--
<?php
// If this test fails ask the developers of run-test.php
//
// We check the general ini settings which affect error handling
// and than verify if a message is given by a division by zero.
// EXPECTF is used here since the error format may change but ut
// should always contain 'Division by zero'.
var_dump(ini_get('display_errors'));
var_dump(ini_get('error_reporting'));
var_dump(ini_get('log_errors'));
var_dump(ini_get('track_errors'));
ini_set('display_errors', 0);
var_dump(ini_get('display_errors'));
var_dump($php_errormsg);
$error = 1 / 0;
var_dump($php_errormsg);
?>
--EXPECTF--
unicode(1) "1"
unicode(5) "16383"
unicode(1) "0"
unicode(1) "1"
unicode(1) "0"
NULL
unicode(%d) "%sivision by zer%s"