Lis le nombre de commentaires écrits depuis un cookie

This commit is contained in:
2022-12-15 20:16:44 +01:00
parent 1fcf68d197
commit 765540b5c8
2 changed files with 21 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
<?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, '/');
}
}