Как удалить текст после расширения .jpg Соскоб

У меня есть этот URL для списания: example.com/upload/produse/epilatoare/SE810%20Face.jpg?maxwidth=800&MaxHeight = 800
Я хочу удалить все символы после .jpg и не знаю, как это сделать.

Код для соскоба сайта:

if(isset($this->request->post['image_scrapper'])){
$imageQuery = $xpath->query("//div[@id='fancybox-content']//img/@src");

if($imageQuery->length > 0){
foreach ($imageQuery as $key => $image){
$extensie = end((explode('/', $image->nodeValue)));
$extensie = end((explode('.', $extensie)));
$model = preg_replace("/[^a-zA-Z0-9 -\/]+/","",trim($this->request->post['model']));
$imageName = str_replace(" ","-",trim($this->request->post['product_description']['1']['name']));
$imageName = preg_replace("/[^a-zA-Z0-9 -]+/","",$imageName);
$imageName .= "-".preg_replace("/[^a-zA-Z0-9 -]+/","",$model);
$imageName = strtolower($imageName);
$imageName = preg_replace("/[-]+/","-",$imageName);
$imageName .= '-'.rand().'.'.$extensie;
$imageName = 'data/'.$imageName;

copy($image->nodeValue, DIR_IMAGE.$imageName);
if($key == '0'){
$this->model_catalog_product->firstImage($product_id, $imageName);
}else{
$this->model_catalog_product->aditionaleImage($product_id, $imageName);
}
}
}else{
if(isset($this->session->data['error'])){
$this->session->data['error'] .= ' Produsul nu are imagini';
}else{
$this->session->data['error'] = 'Scrapper: Produsul nu are imagini.';
}
}
}

Пожалуйста, помогите мне,
Спасибо

-5

Решение

Попробуй это:

$yourImage = substr($yourImage, 0, strpos($yourImage','.jpg'));
0

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]