Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // perform current page data regex
- while(
- preg_match(
- $card_pattern,
- $page,
- $card_matches
- )
- )
- {
- $result .= '<tr><td><h3>'. $card_matches[ 1 ]. '<h3><p>'. $card_matches[ 0 ]. '</p></td></tr>';
- // save creation card collection to file
- file_put_contents( $nen[ 'root' ]. 'card data/'. $card_matches[ 1 ], $card_matches[ 0 ] );
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement