Jump to content

multiple preg_match


sphinx

Recommended Posts

Hello,

 

I'm looking to preg_match multiple statistics from a page. The first one works perfectly, but I need to grab and display three different types of data and display on one page. Can this be done?

 

Thanks

 

<?php
$page_contents = file_get_contents("http://www.site.com");
$matches = array();
preg_match('/([0-9]+) day, ([0-9]+) hours, ([0-9]+) min, ([0-9]+) sec/', $page_contents, $matches);
echo $matches[0];
?>

 

 

Link to comment
https://forums.phpfreaks.com/topic/221429-multiple-preg_match/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.