我與內容分離的圖像,像這樣:正則表達式FILENAME.EXT僅
list($img, $string) = explode('>', $string, 2);
$isSlashes = (stripos($img, '\\')!==false);
if ($isSlashes) {
$img = stripslashes($img);
}
preg_match('|src=["\']([^"\']+)["\']|i', $img, $match);
if (empty($match[1])) {
imgres_log('Image src not found in '.$img, 'error');
imgres_joinContent($content, $img, $string, $isSlashes);
continue;
}
$src = $match[1];
...它通常工作時提供一個查詢字符串的圖像,除了如:img0880.jpg?itok=pUzE5f9d
這打亂了一切。如何在?
標記後刪除零件?
真棒,對於現在的作品! ;) – 3zzy 2013-03-08 12:21:56