<?php

$document = "{title}this is the title{/title}";
preg_match("/{title}(.*){\/title}/", $document, $match);
//echo $match; // PHP Notice:  Array to string conversion in /home/jxkaKh/prog.php on line 5
print_r($match);