Ben PHP vs Python hakkında ancak genel olarak dil ile ilgili olması bu soruya anlamına gelmez. Ben onları biliyorum, çünkü ben örnek olarak Python ve PHP kullanmak.
In Python we can do mytoken = mystring.split(mydelimiter)[1]
, accessing the list returned by str.split
without ever assigning it to a list.
In PHP we must put the array in memory before accessing it, as in $mytokenarray = explode($mydelimiter, $mystring); $mytoken = $mytokenarray[1];
. As far as I know it is not possible to do this in one statement as in Python.
Ne bu farkın arkasında oluyor?