0
我有以下的代碼從帖子內容中提取第一三十字回聲出一個數組:你怎麼一個在WordPress的
$extract = explode (' ', $post->post_content);
$first_thirty = array_slice($extract, 0, 30);
echo $first_thirty;
但當我echo $first_thirty;
它打印「陣列」,我怎麼能得到它打印正確。
'的print_r($ first_thirty);''的var_dump($ first_thirty);' –