mirror of
https://github.com/php/php-src.git
synced 2025-08-20 17:34:35 +02:00
13 lines
254 B
PHP
13 lines
254 B
PHP
--TEST--
|
|
Test dechex() - wrong params dechex()
|
|
--FILE--
|
|
<?php
|
|
dechex();
|
|
dechex(23,2,true);
|
|
?>
|
|
|
|
--EXPECTF--
|
|
|
|
Warning: dechex() expects exactly 1 parameter, 0 given in %s on line %d
|
|
|
|
Warning: dechex() expects exactly 1 parameter, 3 given in %s on line %d
|