Files
anpdf/app/helpers/picbook.php
2021-06-16 16:05:30 +03:00

20 lines
348 B
PHP

<?php
/**
* url image book
*/
function picbook($item, $width, $height) {
$id = $item['price_id'];
$img = $item['priceimg'];
if (in_array($img, array('jpg', 'jpeg', 'gif', 'png', 'JPG'))){
$fileimg = $id . '.' . $img;
}
else
$fileimg = $img;
return IMGSRV.'price/'.$width.'x'.$height.'/'.$fileimg;
}