Вытащить нужное их тхт

Discussion in 'Болталка' started by Fishered, 29 Nov 2011.

  1. Fishered

    Fishered Banned

    Joined:
    12 Oct 2010
    Messages:
    1
    Likes Received:
    1
    Reputations:
    0
    Есть тхт файлы . в них много инфы

    Код:

    <VulRow>
    <ReferURL>http://site.ru/next/index.php^id=15</ReferURL>
    <Parameter>id=15</Parameter>
    <Type>Integer</Type>
    <KWordActionURL>Бесплатная</KWordActionURL>
    <Vulnerability>COOKIE SQL INJECTION</Vulnerability>
    </VulRow>

    нужно из него вытащить все линки вида

    http://site.ru/next/index.php^id=15

    как это можно сделать? замучался уже
    заранее благодарю
     
  2. Hixon

    Hixon Member

    Joined:
    17 Apr 2010
    Messages:
    88
    Likes Received:
    9
    Reputations:
    0
    http://php.net/manual/en/book.xml.php или Р.В.
     
  3. 090808

    090808 Member

    Joined:
    15 Mar 2009
    Messages:
    171
    Likes Received:
    46
    Reputations:
    10
    Все линки находятся в тегах: <ReferURL>...</ReferURL> ?
     
  4. Skofield

    Skofield Elder - Старейшина

    Joined:
    27 Aug 2008
    Messages:
    960
    Likes Received:
    392
    Reputations:
    58
    PHP:
    <?php $str file_get_contents("file.txt"); preg_match_all("#http://.*id=\d+|https://.*id=\d+#"$str$links); foreach ($links[0] as $line) { echo $line."<br>\r\n"; } ?>
     
Loading...