5 ms·
An alternative syntax for that is to cast $this as an array: array_slice((array)$this, 1); I'm not sure if this will be faster though. Is the source of th
by Scriptor 16y ago
An alternative syntax for that is to cast $this as an array:
array_slice((array)$this, 1);
I'm not sure if this will be faster though. Is the source of the slowness getArrayCopy or array_slice itself?