mirror of
https://github.com/php/php-src.git
synced 2024-12-12 11:23:53 +08:00
cf174c1366
numeric strings to integers.
27 lines
598 B
PHP
27 lines
598 B
PHP
--TEST--
|
|
Test json_encode() function with numeric flag
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded("json")) {
|
|
die('skip JSON extension not available in this build');
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
var_dump(
|
|
json_encode("1", JSON_NUMERIC_CHECK),
|
|
json_encode("9.4324", JSON_NUMERIC_CHECK),
|
|
json_encode(array("122321", "3232595.33423"), JSON_NUMERIC_CHECK),
|
|
json_encode("1"),
|
|
json_encode("9.4324"),
|
|
json_encode(array("122321", "3232595.33423"))
|
|
);
|
|
?>
|
|
--EXPECT--
|
|
string(1) "1"
|
|
string(6) "9.4324"
|
|
string(22) "[122321,3232595.33423]"
|
|
string(3) ""1""
|
|
string(8) ""9.4324""
|
|
string(26) "["122321","3232595.33423"]"
|