mirror of
https://github.com/php/php-src.git
synced 2024-12-24 09:18:17 +08:00
10 lines
162 B
PHP
10 lines
162 B
PHP
--TEST--
|
|
Error messages are shown
|
|
--FILE--
|
|
<?php
|
|
// If this test fails ask the developers of run-test.php
|
|
$error = 1 / 0;
|
|
?>
|
|
--EXPECTREGEX--
|
|
.*Division by zero.*
|