慢慢累積正則 存下來

<?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];
//合做協議圖片處理 結束
相關文章
相關標籤/搜索