Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的情况很简单:我有一组文本。我需要使用其中的前 2 个作为参数,然后将所有其余的内爆到一个字符串,以创建第三个参数。我不知道会有多少元素。
我不喜欢复制整个数组并删除 $array[0] 和 $array[1],因为它可能是一个相当大的数组,而且似乎不需要。
我无法从原始数组中删除值,因为我需要它们以备将来使用。
foo($array[0], $array[1], join(',', array_slice($array, 2)))