在 PHP 中的 explode 函数之前向数组中的索引 0 添加一些值

Add Some Value to index-0 in Array before explode function in PHP

我有一个类似于

的代码
$results = array();
array_push($results, $term);
//after a few more lines
$results=explode(",", $resutl_string[1]);

但必须覆盖 index 0 并且我无法在 index 0 上保存 $term,尽管我可以在最后成功推送 $term

想知道一些线索或帮助将我的 $term 放在 index 0

提前致谢

如果您要查找的数组是术语加上当前内容,您可以使用:

array_unshift($term, $results);