php-src/ext/standard/tests/math/dechex_basic.phpt
Andrea Faulds 5f29b98051 Error on invalid octal (fixes PHPSadness #31)
Further error checks
2015-01-17 18:50:28 +00:00

39 lines
528 B
PHP

--TEST--
Test dechex() - basic function dechex()
--FILE--
<?php
$values = array(10,
3950.5,
3.9505e3,
03,
0x5F,
"10",
"3950.5",
"3.9505e3",
"039",
"0x5F",
true,
false,
null,
);
for ($i = 0; $i < count($values); $i++) {
$res = dechex($values[$i]);
var_dump($res);
}
?>
--EXPECTF--
string(1) "a"
string(3) "f6e"
string(3) "f6e"
string(1) "3"
string(2) "5f"
string(1) "a"
string(3) "f6e"
string(1) "3"
string(2) "27"
string(1) "0"
string(1) "1"
string(1) "0"
string(1) "0"