Laurent Monjou
Results
1
comments of
Laurent Monjou
I tried this : ``` class ProductCrudController extends AbstractCrudController { private $currentDate; public function __construct() { $this->currentDate = (new DateTime())->format('Ym'); $dirName = "uploads/" . $this->currentDate; if (!is_dir($dirName)) { mkdir($dirName); }...