排序JSON我怎樣才能標籤排序依次爲:部隊PHP
1080p
720p
480p
360p
我已經試過PHP文件中所有的數組排序和一些其他「用戶自定義」分類功能,但沒有運氣,它顯示完全隨機,不按順序。
我原來的JSON:
[{"file":"***","label":"360p","default":"true","type":"video\/mp4"},
{"file":"***","label":"720p","type":"video\/mp4"},
{"file":"***","label":"1080p","type":"video\/mp4"},
{"file":"***","label":"480p","type":"video\/mp4"}]
你試過去掉「p」然後排序嗎? – MikeBergerUS
從數組中每個標籤的explode()中移除「p」,然後使用'intval()'函數獲取字符串的int值。然後根據索引 –