How can I use date interval
to count when to register a product, for example I register the product day 8 I want that from 15 days this product is no longer a new product, or when it is 23 this product is no longer how can I do this using date interval
?
code:
$criacao_produto = new DateTime($data);
$dias = $criacao_produto->diff(new DateTime())->d;
if($dias < 2)
echo "Produto e novo";
else
echo "produto velho"