This is what people should be using instead of explode
most of the time:
$foo = strtok("bla ble bli", " ");
It cuts off the first string part until the first " "
.
If you can't let go of explode, then the closest idiom to accomplish [0]
like in Python is:
$foo = current(explode(...));
If it's not just the first element, then it becomes a tad more cumbersome:
$foo = current(array_slice(explode(...), 2)); // element [2]
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…