X7ROOT File Manager
Current Path:
/opt/alt/tests/alt-php82-pecl-yaml_2.2.3-1.el8/tests
opt
/
alt
/
tests
/
alt-php82-pecl-yaml_2.2.3-1.el8
/
tests
/
ðŸ“
..
📄
bug_21995.phpt
(393 B)
📄
bug_59860.phpt
(1.61 KB)
📄
bug_60628.phpt
(1.48 KB)
📄
bug_61770.phpt
(259 B)
📄
bug_61923.phpt
(1.15 KB)
📄
bug_64019.phpt
(684 B)
📄
bug_64694.phpt
(419 B)
📄
bug_69465.phpt
(802 B)
📄
bug_69616.phpt
(418 B)
📄
bug_69617.phpt
(314 B)
📄
bug_72204.phpt
(400 B)
📄
bug_72540.phpt
(258 B)
📄
bug_74799.phpt
(833 B)
📄
bug_74799.yaml
(21 B)
📄
bug_75029.phpt
(410 B)
📄
bug_76309.phpt
(334 B)
📄
bug_77720.phpt
(12.32 KB)
📄
bug_79494.phpt
(609 B)
📄
bug_79567.phpt
(331 B)
📄
bug_79866.phpt
(939 B)
📄
bug_80324.phpt
(443 B)
📄
bug_parsing_alias.phpt
(684 B)
📄
yaml_001.phpt
(1.08 KB)
📄
yaml_002.phpt
(1.07 KB)
📄
yaml_emit_001.phpt
(2.22 KB)
📄
yaml_emit_002.phpt
(1.91 KB)
📄
yaml_emit_003.phpt
(1.62 KB)
📄
yaml_emit_004.phpt
(336 B)
📄
yaml_emit_005.phpt
(345 B)
📄
yaml_emit_006.phpt
(3.66 KB)
📄
yaml_emit_007.phpt
(405 B)
📄
yaml_emit_008.phpt
(1.45 KB)
📄
yaml_emit_009.phpt
(1.19 KB)
📄
yaml_emit_file_basic.phpt
(1.87 KB)
📄
yaml_parse_001.phpt
(3.44 KB)
📄
yaml_parse_002.phpt
(645 B)
📄
yaml_parse_003.phpt
(723 B)
📄
yaml_parse_004.phpt
(471 B)
📄
yaml_parse_005.phpt
(1.94 KB)
📄
yaml_parse_006.phpt
(1.62 KB)
📄
yaml_parse_007.phpt
(408 B)
📄
yaml_parse_008.phpt
(2.29 KB)
📄
yaml_parse_file_001.phpt
(1.54 KB)
📄
yaml_parse_file_001.yaml
(644 B)
📄
yaml_parse_file_002.phpt
(1.29 KB)
📄
yaml_parse_spec_binary.phpt
(1021 B)
📄
yaml_parse_spec_bool.phpt
(339 B)
📄
yaml_parse_spec_float.phpt
(538 B)
📄
yaml_parse_spec_int.phpt
(494 B)
📄
yaml_parse_spec_map.phpt
(661 B)
📄
yaml_parse_spec_merge.phpt
(1.33 KB)
📄
yaml_parse_spec_null.phpt
(787 B)
📄
yaml_parse_spec_omap.phpt
(1.01 KB)
📄
yaml_parse_spec_pairs.phpt
(926 B)
📄
yaml_parse_spec_seq.phpt
(1.33 KB)
📄
yaml_parse_spec_set.phpt
(378 B)
📄
yaml_parse_spec_str.phpt
(219 B)
📄
yaml_parse_spec_timestamp.phpt
(729 B)
📄
yaml_parse_url_001.phpt
(1.55 KB)
📄
yaml_parse_wiki_YtsBasicTests_001.phpt
(527 B)
📄
yaml_parse_wiki_YtsBasicTests_002.phpt
(537 B)
📄
yaml_parse_wiki_YtsBasicTests_003.phpt
(607 B)
📄
yaml_parse_wiki_YtsBasicTests_004.phpt
(531 B)
📄
yaml_parse_wiki_YtsBasicTests_005.phpt
(596 B)
📄
yaml_parse_wiki_YtsBasicTests_006.phpt
(482 B)
📄
yaml_parse_wiki_YtsBasicTests_007.phpt
(567 B)
📄
yaml_parse_wiki_YtsBasicTests_008.phpt
(898 B)
📄
yaml_parse_wiki_YtsBasicTests_009.phpt
(557 B)
📄
yaml_parse_wiki_YtsBlockMapping_001.phpt
(362 B)
📄
yaml_parse_wiki_YtsBlockMapping_002.phpt
(459 B)
📄
yaml_parse_wiki_YtsBlockMapping_003.phpt
(530 B)
📄
yaml_parse_wiki_YtsBlockMapping_004.phpt
(482 B)
📄
yaml_parse_wiki_YtsMapInSeq_001.phpt
(445 B)
📄
yaml_parse_wiki_YtsMapInSeq_002.phpt
(425 B)
📄
yaml_parse_wiki_YtsMapInSeq_003.phpt
(438 B)
📄
yaml_parse_wiki_YtsStrangeKeys_001.phpt
(386 B)
📄
yaml_parse_wiki_YtsStrangeKeys_002.phpt
(470 B)
Editing: yaml_emit_006.phpt
--TEST-- yaml_emit - ini settings --SKIPIF-- <?php if(!extension_loaded('yaml')) die('skip yaml n/a'); ?> --INI-- yaml.output_canonical=0 yaml.output_indent=2 yaml.output_width=80 serialize_precision=-1 --FILE-- <?php $addr = array( "given" => "Chris", "family"=> "Dumars", "address"=> array( "lines"=> "458 Walkman Dr. Suite #292", "city"=> "Royal Oak", "state"=> "MI", "postal"=> 48046, ), ); $invoice = array ( "invoice"=> 34843, "date"=> 980208000, "bill-to"=> $addr, "ship-to"=> $addr, "product"=> array( array( "sku"=> "BL394D", "quantity"=> 4, "description"=> "Basketball", "price"=> 450, ), array( "sku"=> "BL4438H", "quantity"=> 1, "description"=> "Super Hoop", "price"=> 2392, ), ), "tax"=> 251.42, "total"=> 4443.52, "comments"=> "Late afternoon is best. Backup contact is Nancy Billsmer @ 338-4338.", ); var_dump(yaml_emit($invoice)); ini_set("yaml.output_canonical", "1"); ini_set("yaml.output_indent", "4"); ini_set("yaml.output_width", "40"); echo "== CANONICAL ==\n"; var_dump(yaml_emit($invoice)); ?> --EXPECT-- string(620) "--- invoice: 34843 date: 980208000 bill-to: given: Chris family: Dumars address: lines: |- 458 Walkman Dr. Suite #292 city: Royal Oak state: MI postal: 48046 ship-to: given: Chris family: Dumars address: lines: |- 458 Walkman Dr. Suite #292 city: Royal Oak state: MI postal: 48046 product: - sku: BL394D quantity: 4 description: Basketball price: 450 - sku: BL4438H quantity: 1 description: Super Hoop price: 2392 tax: 251.42 total: 4443.52 comments: Late afternoon is best. Backup contact is Nancy Billsmer @ 338-4338. ... " == CANONICAL == string(1822) "--- !!map { ? !!str "invoice" : !!int "34843", ? !!str "date" : !!int "980208000", ? !!str "bill-to" : !!map { ? !!str "given" : !!str "Chris", ? !!str "family" : !!str "Dumars", ? !!str "address" : !!map { ? !!str "lines" : !!str "458 Walkman Dr.\n Suite #292", ? !!str "city" : !!str "Royal Oak", ? !!str "state" : !!str "MI", ? !!str "postal" : !!int "48046", }, }, ? !!str "ship-to" : !!map { ? !!str "given" : !!str "Chris", ? !!str "family" : !!str "Dumars", ? !!str "address" : !!map { ? !!str "lines" : !!str "458 Walkman Dr.\n Suite #292", ? !!str "city" : !!str "Royal Oak", ? !!str "state" : !!str "MI", ? !!str "postal" : !!int "48046", }, }, ? !!str "product" : !!seq [ !!map { ? !!str "sku" : !!str "BL394D", ? !!str "quantity" : !!int "4", ? !!str "description" : !!str "Basketball", ? !!str "price" : !!int "450", }, !!map { ? !!str "sku" : !!str "BL4438H", ? !!str "quantity" : !!int "1", ? !!str "description" : !!str "Super Hoop", ? !!str "price" : !!int "2392", }, ], ? !!str "tax" : !!float "251.42", ? !!str "total" : !!float "4443.52", ? !!str "comments" : !!str "Late afternoon is best. Backup contact is Nancy Billsmer @ 338-4338.", } ... "
Upload File
Create Folder