Guest User

Untitled

a guest
Feb 25th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <?php
  2. require('simple_html_dom.php'); //Libreria
  3. $url = "https://www.exito.com/products/MP00550000000204/Televisor+LG+Led+43+Pulgadas+Full+HD+Smart+TV+43LJ550T"; //Link del producto
  4. $html = new simple_html_dom();
  5. $html->load_file($url);
  6. $post = $html->find('p[class=price offer]', 0)->plaintext;
  7. $resultado = str_replace ( ".0", '', $post);
  8. echo $resultado;
  9. ?>
Add Comment
Please, Sign In to add comment