JavaScript | PHP |
---|---|
let x = 5; |
$x = 5; |
for (let i = 0; i < 5; i++) { } |
for ($i = 0; $i < 5; $i++) { } |
let arr = [1, 2, 3]; |
$arr = array(1, 2, 3); $arr - [1, 2,3] |
function add(a, b) { } |
function add($a, $b) { } |
if (condition) { } else { } |
if ($condition) { } else { } |
while (condition) { } |
while ($condition) { } |