| Server IP : 198.38.94.67 / Your IP : 216.73.217.142 Web Server : LiteSpeed System : Linux d6054.dxb1.stableserver.net 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64 User : azfilmst ( 1070) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /opt/cpanel/ea-php82/root/usr/share/tests/pecl/yaml/tests/ |
Upload File : |
--TEST--
Test PECL bug #61923
--SKIPIF--
<?php if(!extension_loaded('yaml')) die('skip yaml n/a'); ?>
--INI--
serialize_precision=-1
--FILE--
<?php
$yaml_code = <<<YAML
---
strings:
- '1:0'
- '0:1'
- '1:0:0'
- '+1:0:0'
- '-1:0:0'
- ':01'
- ':1'
- '18:53:17.00037'
numbers:
- 1:0
- 0:1
- 1:0:0
- +1:0:0
- -1:0:0
- :01
- :1
- 18:53:17.00037
YAML;
$parsed = yaml_parse($yaml_code);
var_dump($parsed);
var_dump(yaml_emit($parsed));
?>
--EXPECT--
array(2) {
["strings"]=>
array(8) {
[0]=>
string(3) "1:0"
[1]=>
string(3) "0:1"
[2]=>
string(5) "1:0:0"
[3]=>
string(6) "+1:0:0"
[4]=>
string(6) "-1:0:0"
[5]=>
string(3) ":01"
[6]=>
string(2) ":1"
[7]=>
string(14) "18:53:17.00037"
}
["numbers"]=>
array(8) {
[0]=>
int(60)
[1]=>
int(1)
[2]=>
int(3600)
[3]=>
int(3600)
[4]=>
int(-3600)
[5]=>
int(1)
[6]=>
int(1)
[7]=>
float(67997.00037)
}
}
string(161) "---
strings:
- "1:0"
- "0:1"
- "1:0:0"
- "+1:0:0"
- "-1:0:0"
- ":01"
- ":1"
- "18:53:17.00037"
numbers:
- 60
- 1
- 3600
- 3600
- -3600
- 1
- 1
- 67997.00037
...
"