Just a second ago I was playing around with PHP, trying to figure out if there was a native range function (eventually finding range
). However, one of the things I tried was the following:
echo 1...2;
which to my surprise returns the string "10.2"
. Can anyone tell me exactly what syntax is responsible for this? It doesn't seem like a valid place for a splat operator.