Jump to content

Get a content between <body> and </body>


firedealer

Recommended Posts

I know the regex_pattern is wrong. Help me out?

 

<?php
$content = "<html><head><title>Your IP</title></head><body>Your IP Address: 63.1.142.154</body></html>";
$regex_pattern = "/<body>([^>]*)<\/body>/si";
$preg_match($regex_pattern,htmlspecialchars($content),$matches);
print_r( $matches );
?>

Link to comment
https://forums.phpfreaks.com/topic/235973-get-a-content-between-and/
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.