Http://www.website.com/08/2010/super-cool-article dan http://www.website.com Özü

1 Cevap php

Ben regex emmek, ben sadece şimdiye kadar başardı preg_match("/http:\/\//", $url).

Ben bir php komut dosyası için bu ihtiyacı

1 Cevap

Veya regex kullanarak:

<?php
$blah="http://www.website.com/08/2010/super-cool-article";
preg_match('/^http:\/\/(\w|\.)*/i',$blah,$matches);
$result=$matches[0];
echo $result;
?>

veya bir patlama tarafından:

<?php
$blah="http://www.website.com/08/2010/super-cool-article";
$blah=explode("/",$blah);
$result=$blah[0]."//".$blah[2];
echo $result;
?>