<?php /*很久沒用正則了都忘的差很少了,之後全部的正則都放在這裏 ,方便之後查找複用 */ //下面是防止意外 處理拼接字符 , $data['otherlicense'] = str_replace(',,',',',$data['otherlicense']); $pattern = "/^(.*),$/"; preg_match($pattern , $data['otherlicense'], $matches); if($matches) $data['otherlicense'] = $matches[1]; $pattern = "/^,(.*)$/"; preg_match($pattern , $data['otherlicense'], $matches); if($matches) $data['otherlicense'] = $matches[1]; //合做協議圖片處理 結束