HEX
Server: Apache/2.4.41 (Amazon) OpenSSL/1.0.2k-fips PHP/5.6.40
System: Linux ip-172-31-40-18 4.14.146-93.123.amzn1.x86_64 #1 SMP Tue Sep 24 00:45:23 UTC 2019 x86_64
User: apache (48)
PHP: 5.6.40
Disabled: NONE
Upload Files
File: //usr/share/pear/test/json/tests/json_encode_numeric.phpt
--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"]"