zlibproxy/test.php
2024-06-21 20:30:44 +08:00

5 lines
69 B
PHP

<?php
$a=array("a"=>"red","b"=>"green");
$a['c']="1";
print_r($a);
?>