Skip to content

Instantly share code, notes, and snippets.

@gmailzj
Created August 25, 2023 11:17
Show Gist options
  • Save gmailzj/40a458186a352423c61f405403a68f9b to your computer and use it in GitHub Desktop.
Save gmailzj/40a458186a352423c61f405403a68f9b to your computer and use it in GitHub Desktop.
php json
<?php
$arr = [];
$arr[1] = 'yyy';
$arr[0] = 'xxx';
echo json_encode($arr);//{"1":"yyy","0":"xxx"}
$arr = [];
$arr[0] = 'xxx';
$arr[1] = 'yyy';
echo json_encode($arr);//["xxx","yyy"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment