1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-07-30 19:40:36 +02:00

Add delete of variable

Add delete of variable
This commit is contained in:
Nasgul
2017-10-31 13:51:56 +02:00
committed by GitHub
parent 61c8a08434
commit 90058a7672

View File

@@ -61,6 +61,8 @@ $int4 = 0x0F; // => 15 (ведущие символы 0x означают шес
// Двоичная запись integer доступна начиная с PHP 5.4.0.
$int5 = 0b11111111; // 255 (0b в начале означает двоичное число)
// Удаление переменной
unset($int1);
// Дробные числа
$float = 1.234;