Results 1 to 2 of 2
  1. #1
    darkfrozen's Avatar
    Join Date
    Sep 2017
    Gender
    male
    Posts
    24
    Reputation
    10
    Thanks
    1

    how to save the result obtained with preg_match_all in a text file

    Hello. How are you? Is it possible to save the result of preg_match_all in a text?

    this is my code But it's not working.

    <?php


    $html = file_get_contents("https://example.com/imag-ad6c66810qs4.html");



    preg_match_all(
    '/(https:..\w\w\w\w\w\w,.urlset.*png)/',

    $html,
    $posts,
    PREG_SET_ORDER
    );

    foreach ($posts as $post) {
    $link = $post[0];
    }

    $file = fopen("file.txt", "w");

    fwrite($file, "$link" . PHP_EOL);


    fclose($file);




    ?>
    I hope you can help me, thank you very much.
    Last edited by darkfrozen; 12-30-2018 at 12:15 PM.

  2. #2
    MikeRohsoft's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Los Santos
    Posts
    797
    Reputation
    593
    Thanks
    26,315
    int preg_match_all ( string $pattern , string $subject [, array &$matches [, int $flags = PREG_PATTERN_ORDER [, int $offset = 0 ]]] )
    the third parameter is a matches array to store the matches.
    In Match 0 is in what had matched exactly

Similar Threads

  1. How to remove the legacy prestige with Save Editor?
    By Mnkz in forum Dead by Daylight Discussion & Help
    Replies: 6
    Last Post: 07-11-2018, 01:08 AM
  2. [Tutorial] How to dupe!! The full tutorial with the latest tricks! WITH PICTURES!
    By loldudev5 in forum Realm of the Mad God Hacks & Cheats
    Replies: 34
    Last Post: 08-31-2012, 11:35 AM
  3. [Tutorial] How to save the Replay you miss
    By MrScandal in forum CrossFire Tutorials
    Replies: 25
    Last Post: 04-26-2011, 01:57 PM
  4. Can someone explain how I find the spread address with MHS?
    By Starecase in forum Combat Arms Hacks & Cheats
    Replies: 11
    Last Post: 10-06-2008, 10:56 PM
  5. [Tutorial] How to Avoid the C++ overrun with a Working Bypass
    By prox32 in forum WarRock - International Hacks
    Replies: 4
    Last Post: 06-10-2007, 05:12 AM

Tags for this Thread