Files
silex/src/Silex/Util/CommentCounter.php

18 lines
331 B
PHP

<?php
namespace Silex\Util;
const COMMENTS = 'comments';
final class CommentCounter
{
public static function incrementCommentCounter()
{
$c = $_COOKIE[COMMENTS] ?? '0';
if (!is_numeric($c)) {
$c = '0';
}
setcookie(COMMENTS, intval($c) + 1, time() + 60*60*24*30, '/');
}
}