Jump to content

Replace/Delete text (PHP noob)


Joe_Dean

Recommended Posts

I'm trying to include this into a webpage, but customize it to my liking: http://doerfler.gtamp.de/monitor/index2.php?ip=85.17.200.135&port=4800&ss=s&c=grey

 

How do I remove everything ABOVE the player count? I'd even settle for something that would replace it with a space if it cannot be 'stripped' out.

Link to comment
https://forums.phpfreaks.com/topic/144846-replacedelete-text-php-noob/
Share on other sites

<?php
$content = file_get_contents('http://doerfler.gtamp.de/monitor/index2.php?ip=85.17.200.135&port=4800&ss=s&c=grey');

preg_match('~<td valign="top">P(.+?)</td>~s', $content, $matches);
print $matches[0];

die();
?>

 

Should print:

<td valign="top">Players</td><td valign="top">0/20</td></tr>

 

preg_match

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.