Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
$testStr = "/2016/08/filename-152x621.jpg"; echo preg_replace("#(?<=/)(\w+)(?=-)#sui", "!!!!", $testStr);
$re = '/\/[0-9]{4}\/[0-9]{2}\/(.+)\-[0-9]+x[0-9]+\.jpg/'; $str = '/2016/08/filename-152x621.jpg'; preg_match_all($re, $str, $matches); // Print the entire match result print_r($matches);