확장자 이후 자르기 > 그누보드

본문 바로가기

사이트 내 전체검색

그누보드

확장자 이후 자르기

<?php

function removeQueryAfterExtension($url) {

    // Regular expression to match a common image extension and remove everything after it

    $pattern = '/(\.jpg|\.jpeg|\.png|\.gif|\.bmp|\.webp)(\?.*)?$/i';

    

    // Replace the matched pattern, removing the query part

    $cleanedUrl = preg_replace($pattern, '$1', $url);

    

    return $cleanedUrl;

}


// Example URL

$url = "https://example.com/image.jpg?q=70&fit=crop&w=1100&h=618&dpr=1";


// Clean the URL

$cleanedUrl = removeQueryAfterExtension($url);


// Output the cleaned URL

echo $cleanedUrl; // Outputs: https://example.com/image.jpg

?>


관련글
  • [열람중]확장자 이후 자르기
  • 실시간 핫 잇슈
    Copyright © www.webstoryboard.com All rights reserved.