php method to extract website url address in string, string url
The example in this article describes the method of php extracting the website URL address in the string. Share it with everyone for your reference. The specific analysis is as follows:
After I wrote a question and answer system today and went online, I found that many people posted links. Since the business department asked us to filter out website addresses, I will share with you a function to extract string url addresses. The code is as follows:
Copy code The code is as follows:
$postInfo['answer2'] ='Yes, commercial loans can be amortized at 36%, and provident fund loans can be amortized 16% repayment|||You can withdraw the balance in the account first and use it as a down payment, and then the monthly loan can be amortized at 36% for commercial loans and 16% for provident fund loans|||Yes, now Class A provident fund is The amortization ratio http://www.bkjia.com is 34% of the salary base |||Ahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhsssssssssssssssssssssssssssssssssssssss of
';
preg_match_all("/http:[/]{2}[a-z]+[.]{1}[a-zd-]+[.]{1}[a-zd]*[/]*[A-Za- zd]*[/]*[A-Za-zd]*/",$postInfo['answer2'],$array2);
print_r($array2);
if(!emptyempty($array2[0]))
{
foreach ($array2[0] as $k=>$v){
$postInfo['answer2'] = str_replace($array2[0][$k],'',$postInfo['answer2'] );
}
}
The running result is:
Copy code The code is as follows:
(
[0] => Array
(
[0] => http://www.bkjia.com
)
)
I hope this article will be helpful to everyone’s PHP programming design.
http://www.bkjia.com/PHPjc/920983.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/920983.htmlTechArticleHow to extract website url address in string by php, string url This article describes the example of php extracting website in string URL address method. Share it with everyone for your reference. The specific analysis is as follows:...