mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-26 11:49:17 +00:00
7dc6eba0af
Previously, multicurl requests were added to the end and removed from the end. Requests are now added to the end and removed from the beginning. Using array_shift() will be slower than array_pop(). Before using "array_push()" + array_pop(): 1 1 2 1 2 3 1 2 3 4 1 2 3 1 2 1 After using "array_push()" + array_shift(): 1 1 2 1 2 3 1 2 3 4 2 3 4 3 4 4