문자열에서 http 주소를 찾고 바꾸기 위한 PHP 코드 공유

WBOY
풀어 주다: 2016-07-25 08:57:24
원래의
1386명이 탐색했습니다.
本文介绍下,用php在指定字符串中查找http地址,并进行替换的一例代码,有需要的朋友参考下。

在字符串中查找、替换http地址,代码如下:

<?php
/**
* 查找、替换字符串http地址
* edit by bbs.it-home.org
*/
function convertImg($str)  
{  
   $str = preg_replace("/\{([^}]+)\}/",'<div style="border:1px dashed #003366; 
background-color:#f0f0f0; height:21px; color:#003399">回复:$1</div>',preg_replace("/\[(\d+)\]/",
'<img  src="/images/face/face$1.jpg"/ alt="문자열에서 http 주소를 찾고 바꾸기 위한 PHP 코드 공유" >',$str));  
   $reg="/http\:\/\/(\w+\.)+(net|com|org|cn|kr|jp|tw)[A-Za-z0-9_&\/\?=]*/i";  
   if(preg_match_all($reg,$str,$out))  
   {  
   for($i=0;$i<count($out[0]);$i++)  
   {  
     $link=substr(base64_encode(md5(preg_replace("/http\:\/\//","",$out[0][$i]))),0,10+strlen($str)%10);  
     $str=str_replace($out[0][$i],'http://'.$link.'',$str);
}  
}  
return $str;  
}
?>
로그인 후 복사


원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!