passio Posted April 5, 2017 Share Posted April 5, 2017 (edited) [EDIT]A force de chercher, je me suis rendu compte qu'il y a deux façon différentes d'accéder aux images. Edited April 5, 2017 by passio (see edit history) Link to comment Share on other sites More sharing options...
passio Posted April 5, 2017 Author Share Posted April 5, 2017 (edited) Mon ancienne méthode pour former les image était : $smallImg = '../../img/p'.$idImage.'/'.$idImage.'-small_default.jpg '; J'en ai trouvé une nouvelle : $path = ""; for($i = 0; $i <= strlen($idImage); $i++){ $path = $path."/".$idImage{$i}; } $smallImg = '../../img/p'.$path.$idImage.'-small_default.jpg'; echo '<br>'; Pourquoi les images sont-elles générées et copiées dans des répertoires différents ? Quelle est supposée être la méthode d'utilisation de chacun ? Edited April 5, 2017 by passio (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now