Da traduttori professionisti, imprese, pagine web e archivi di traduzione disponibili gratuitamente al pubblico.
pokud je definován limit, vrácené pole bude obsahovat maximálně limit prvků, a poslední prvek bude obsahovat celý zbytek string.
문자열의 배열을 반환하며, string 의 부분 문자열로 형성된 각각은 separator 를 경계로 나누어진다. limit 가 지정될 경우 반환된 배열은 마지막 원소가 나머지 문자열의 전체를 포함하는 최대 limit 개의 엘리먼트를 갖는 배열을 반환한다.
hodnota výrazu je testována pokaždé na začátku cyklu (v každé iteraci), takže i když se tato hodnota během provádění vnořených konstruktů změní, provede se zbytek kódu uvnitř cyklu - v konkrétní iteraci - až do konce (každé provedení kódu uvnitř cyklu je jedna iterace).
the meaning of a while statement is simple. it tells php to execute the nested statement(s) repeatedly, as long as the while expression evaluates to true. the value of the expression is checked each time at the beginning of the loop, so even if this value changes during the execution of the nested statement(s), execution will not stop until the end of the iteration (each time php runs the statements in the loop is one iteration). sometimes, if the while expression evaluates to false from the very beginning, the nested statement(s) won't even be run once.