Skip to content

Tag: php

Files are repeated when uploading pictures to Laravel

I want to do bulk image upload on my blog that I write in Laravel. Wrote the code for loading images. Everything works, but the images are repeated After loading 6 images, I get this array of 21 elements. What’s wrong? Answer You’re appending $images to $urls on each image. Do it like this instead…

PHP autoload with namespaces do not load file

I have an issue with my autoloader and namespaces. Below the autoloader Below the index file The file for the class Person is saved in the directory root->include->Person I used the namespace in the class file like this If I visit the index file in the browser it returns ‘Class file not found&#821…

Where is the preload.php file, and how is it generated?

With Symfony 5.1 and PHP 7.4, I want to add preload.php in opcache. Symfony documentation : During container compilation (e.g. when running the cache:clear command), Symfony generates a file called preload.php in the config/ directory with the list of classes to preload. opcache.preload=/path/to/project/confi…