mirror of
https://github.com/php/php-src.git
synced 2024-12-14 04:16:30 +08:00
23 lines
546 B
PHP
23 lines
546 B
PHP
--TEST--
|
|
test compiled reason
|
|
--INI--
|
|
zend.assertions=1
|
|
assert.exception=1
|
|
--FILE--
|
|
<?php
|
|
$next = 1;
|
|
$data = array(
|
|
"key" => "X-HTTP ",
|
|
"value" => "testing"
|
|
);
|
|
|
|
class HeaderMalfunctionError extends AssertionError {}
|
|
|
|
assert (preg_match("~^([a-zA-Z0-9-]+)$~", $data["key"]), new HeaderMalfunctionError("malformed key found at {$next} \"{$data["key"]}\""));
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught HeaderMalfunctionError: malformed key found at 1 "X-HTTP " in %sexpect_007.php:10
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %sexpect_007.php on line 10
|