大家好我有陣列系列季和劇集的名字 這裏是我的陣列PHP的排序數組項問題
- The Flash 2.Sezon 11.Bölüm
- The Flash 2.Sezon 1.Bölüm
- The Flash 1.Sezon 20.Bölüm
- The Flash 2.Sezon 3.Bölüm
- The Flash 3.Sezon 3.Bölüm
(sezon =>季節,bolum =>情節在我的語言)
我要首發排序他們最後一集
- The Flash 1.Sezon 20.Bölüm
- The Flash 2.Sezon 1.Bölüm
- The Flash 2.Sezon 3.Bölüm
- The Flash 2.Sezon 11.Bölüm
- The Flash 3.Sezon 3.Bölüm
我試圖ASORT功能,但沒有奏效。以正確的順序大多數項目,但他們中的一些not.Here是我的全碼:
$args=array('post_type' => 'bolum',
'posts_per_page' =>-1,
'orderby' => 'title',
'meta_query' => array(array(
'key' => 'bolum_dizi',
'value' => '"' . $post_id . '"', // matches exaclty "123", not just 123. This prevents a match for "1234"
'compare' => 'LIKE'
)
)
);
$episodes = get_posts($args);
這也是我如何訂購和打印
asort($episodes);
foreach($episodes as $episode){
echo $episode->post_title .'\n';}
我怎樣才能做到這一點? 非常感謝。
你的代碼是什麼?你有什麼嘗試?預期產出是多少?實際產出是多少?我們可以幫助您解決代碼中的問題,但我們無法理解您的想法。哦,也許可以用你的代碼中定義的相同格式給你的輸入數據。 –
我在帖子中提到過。我嘗試了($ episodes); –
只是發佈相關的代碼。而不僅僅是一個功能的名稱,沒有足夠的信息來說明它是如何使用的。 –