Subversion Repositories eFlore/Applications.cel

Rev

Rev 2105 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2105 Rev 2106
Line 109... Line 109...
109
		$image_meta_ratees = 0;
109
		$image_meta_ratees = 0;
110
		$images_inexistantes = 0;
110
		$images_inexistantes = 0;
Line 111... Line 111...
111
		
111
		
112
		foreach($res as $image) {
112
		foreach($res as $image) {
-
 
113
			$chemin = $this->getCheminImage($image['id_image']); 
113
			$chemin = $this->getCheminImage($image['id_image']); 
114
			echo $chemin."\n";
114
			if(file_exists($chemin)) {
115
			if(file_exists($chemin)) {
115
				list($largeur, $hauteur) = @getimagesize($chemin);
116
				list($largeur, $hauteur) = @getimagesize($chemin);
116
				if(is_numeric($largeur) && is_numeric($hauteur)) {
117
				if(is_numeric($largeur) && is_numeric($hauteur)) {
117
					$req_maj = "UPDATE cel_images SET hauteur = '".$hauteur."', largeur = '".$largeur."' ".
118
					$req_maj = "UPDATE cel_images SET hauteur = '".$hauteur."', largeur = '".$largeur."' ".