ID: 28592
User updated by: webmaster at msc-solutions dot de
Reported By: webmaster at msc-solutions dot de
Status: Open
Bug Type: Output Control
Operating System: Suse Linux
PHP Version: 4.3.4
New Comment:
actual result is this:
Linknr1: www.google.de">googleararga a awerg agdcgasdfgadfg garg<a
href="www.gmx.deLinknr2:
Previous Comments:
------------------------------------------------------------------------
[2004-05-31 13:46:58] webmaster at msc-solutions dot de
Description:
------------
hi,
i coded a script which catches the links from a page.But that eregi
thing is very stupid.
Reproduce code:
---------------
<?
$file = fopen ("http://www.msc-solutions.de/suche.txt", "r");
while (!feof($file)) {
$line = fgets($file);
if (eregi ('href="(.*)"', $line, $out)) {
$nr1 = $out[1];
$nr2 = $out[2];
echo "Linknr1: $nr1";
echo "Linknr2: $nr2";
break;
}
}
?>
Expected result:
----------------
Linknr1: www.google.de Linknr2: www.gmx.de
Actual result:
--------------
www.google.de">googleararga a awerg agdcgasdfgadfg garg<a
href="www.gmx.de
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=28592&edit=1