mirror of
https://github.com/php/php-src.git
synced 2026-04-19 05:51:02 +02:00
13 lines
262 B
PHP
13 lines
262 B
PHP
--TEST--
|
|
dns_check_record() segfault with empty host
|
|
--FILE--
|
|
<?php
|
|
try {
|
|
var_dump(dns_check_record(''));
|
|
} catch (ValueError $exception) {
|
|
echo $exception->getMessage() . "\n";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
dns_check_record(): Argument #1 ($hostname) cannot be empty
|