View Single Post
  #3 (permalink)  
Old 07-26-03, 06:00 AM
alesh.ru alesh.ru is offline
Internet-paraSITE
 
Join Date: Jul 2003
Location: Moscow, Russia
Posts: 25
Thanks: 0
Thanked 0 Times in 0 Posts
PHP Code:

<? 

//Author Mitya Aleshkovsky [email]mitya@alesh.ru[/email] 

    
function cut_html($tag,$string){ 
         
        
$tag=str_replace("<","",$tag); 
        
$tag=str_replace(">","",$tag); 

        
preg_match("!<$tag>(.*?)</$tag>!si",$string,$ok); 


        return (
$ok[1]); 
    } 



$str="123 <body>456</body>897"

echo 
cut_html("body",$str); 

?>
__________________
From Russia with love
Reply With Quote