summaryrefslogtreecommitdiffhomepage
path: root/ru-ru
diff options
context:
space:
mode:
authorNasgul <nasguling@gmail.com>2017-10-31 13:51:56 +0200
committerGitHub <noreply@github.com>2017-10-31 13:51:56 +0200
commit90058a767241d54b3f42a032b6aaae78f43d3889 (patch)
tree88544c1fbd369f6aa2538897b36c50b26a176484 /ru-ru
parent61c8a084341b006e97ef0ad3f4f66e29db2b8239 (diff)
Add delete of variable
Add delete of variable
Diffstat (limited to 'ru-ru')
-rw-r--r--ru-ru/php-ru.html.markdown2
1 files changed, 2 insertions, 0 deletions
diff --git a/ru-ru/php-ru.html.markdown b/ru-ru/php-ru.html.markdown
index 014ff5d0..af77a9ca 100644
--- a/ru-ru/php-ru.html.markdown
+++ b/ru-ru/php-ru.html.markdown
@@ -61,6 +61,8 @@ $int4 = 0x0F; // => 15 (ведущие символы 0x означают шес
// Двоичная запись integer доступна начиная с PHP 5.4.0.
$int5 = 0b11111111; // 255 (0b в начале означает двоичное число)
+// Удаление переменной
+unset($int1);
// Дробные числа
$float = 1.234;