我有一個形式的圖像:基本的PHP正則表達式幫助改變URL結構
http://sub-domain.example.net/random-folder-here/4422414324235_4234234.jpg
,我想在這樣的URL中添加一個文件夾(添加s720x720)
http://sub-domain.example.net/random-folder-here/s720x720/4422414324235_4234234.jpg
如何運行PHP中的正則表達式調用,將幫助我做到這一點? 謝謝!
你不需要regex,[substr](http://us3.php.net/manual/en/function.substr.php)和[strrpos](http://php.net/manual/en /function.strrpos.php)會更容易。 –