Visa ett inlägg
Oläst 2009-10-08, 02:29 #5
Nerox Nerox är inte uppkopplad
Nykomling
 
Reg.datum: Sep 2005
Inlägg: 37
Nerox Nerox är inte uppkopplad
Nykomling
 
Reg.datum: Sep 2005
Inlägg: 37
Jag suger på regexp så gjorde en loop etc..


Kod:
function get_href($string) {
	$result = array();
	$x = 0;
	$array_1 = explode("href=\"",$string);
	foreach ($array_1 as $k => $v) {
		if(strstr($v,"http://") == true) {
			$v = substr($v,0,stripos($v,"\""));
			$result[$x++] = $v;
		}
	}
	return $result;

}
Nerox är inte uppkopplad   Svara med citatSvara med citat