W PHP nie ma operatora dzielenia całkowitego.
There is no integer division operator in PHP.
W PHP jest możliwe wykonywanie rekurencyjnych funkcji.
It is possible to call recursive functions in PHP.
W PHP prawie wszystko co napiszesz jest wyrażeniem.
In PHP, almost anything you write is an expression.
W PHP istnieje wiele typów zmiennych.
There are many types of variables available in PHP.
W PHP dane możemy przechowywać w następujący sposób
Following are ways you can define variables in PHP
W PHP 3, funkcje muszą być zdefiniowane przed odwołaniem do nich.
In PHP 3, functions must be defined before they are referenced.
W PHP 3, przypisanie zmiennych jest możliwe tylko przez wartość.
In PHP 3, variables are always assigned by value.
W PHP nie jest konieczne inicjowanie zmiennych, jednak jest to bardzo dobry nawyk.
It is not necessary to initialize variables in PHP however it is a very good practice.
W PHP 4 domyślne kodowanie wyjściowe jest takie same jak i wejściowe.
In PHP 4, the default output encoding is the same as the input charset.
W PHP, tak jak kilku innych językach jak na przykład C, możesz napisać to krócej, co z czasem stanie się także bardziej przejrzyste i łatwiejsze do zrozumienia.
In PHP, as in several other languages like C, you can write this in a shorter way, which with time would become clearer and quicker to understand as well.
W PHP 4.3.0 file() stał się binarnie bezpieczny.
In PHP 4.3.0 file() became binary safe.
W PHP 3, wielokrotne wywołania setcookie() w jednym skrypcie wykonywane były w odwrotnej kolejności.
In PHP 3, multiple calls to setcookie() in the same script will be performed in reverse order.
Ostrzeżenie W PHP 4.0.6 i wcześniejszych funkcja pow() zawsze zwracała typ float i nie wyświetlała ostrzeżeń.
Warning In PHP 4.0.6 and earlier pow() always returned a float, and did not issue warnings.