Guest User

Untitled

a guest
Feb 18th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. $file = file_get_contents('file.txt', true);
  2. // echo $file;
  3. $pieces = explode(",", $file);
  4. print_r($pieces);
  5.  
  6. foreach ($pieces as $key => $value) {
  7. $h = file_get_html($value);
  8.  
  9. $title = $h->find('p.b-product-cost__price') ;
  10. echo $title ->plaintext;
  11. }
  12.  
  13. $file = file_get_contents('file.txt', true);
  14. // echo $file;
  15. $pieces = explode(",", $file);
  16. print_r($pieces);
  17.  
  18. foreach ($pieces as $key => $value) {
  19. $h = file_get_html($value);
  20. }
Add Comment
Please, Sign In to add comment