Cita: Ejemplo:
http://juanito.perez.com/solucion/ayuda?1.php
http://juanito.perez.com/consultas/consultas?44.php
http://otraweb.com/problema/ayuda?23.php
extraer solo urls que comiencen por "http://juanito.perez.com/solucion/"... en este caso el output sería: http://juanito.perez.com/solucion/ayuda?1.php
Si quieres que solo extraiga los Links que empiezan con
"http://juanito.perez.com/solucion/" podría ser asi:
Código PHP:
Ver original<?php
$str = '
http://juanito.perez.com/solucion/ayuda?1.php
http://juanito.perez.com/consultas/consultas?44.php
http://otraweb.com/problema/ayuda?23.php
http://juanito.perez.com/solucion/ejemplo.php
http://juanito.perez.com/solucion/ejemplo2?var1=1&var2=2.php';
$expr = '#http:\/\/juanito\.perez\.com\/solucion\/.+\.php#'; //EXPRESION
foreach($arrMatches[0] as $values){
echo $values.'<br/>';
}
?>
lo he probado y funciona.
Espero te sirva!!
Saludos!