✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що виведе наступна конструкція?
<?php
if (isset($_COOKIE[‘Лічильник’])) $cnt=$_COOKIE[‘Лічильник’]+1;
else $cnt=0;
setcookie("Лічильник",$cnt,0x6FFFFFFF);
echo "<p>Сторінку відвідали: <b>".@$_COOKIE[‘Лічильник’]."</b> раз(и)</p>";
?>