This must be a gotcha of some sort, but I just can’t see it. I’ve taken it out of my application and tested it in a separate script, and it performs the same way. Here’s the extracted code, but it has the same problem independently.
<?php
$actions[1] = '14-pictures-of-trees';
var_dump($actions[1]); // 1
$url = explode('-', $actions[1], 2);
var_dump($url); // 2
list($id, $url) = $url;
var_dump($id); // 3
var_dump($url); // 4
Here’s the results:
string '14-pictures-of-trees' (length=20)array
0 => string '14' (length=2)
1 => string 'pictures-of-trees' (length=17)string 'p' (length=1)string 'pictures-of-trees' (length=17)
I’m expecting 3 to return string '14' but it doesn’t!

14. – Matthew Feb 23 '12 at 22:40