我需要从html文件中获取两件事:
<title>
和</title>
<body>
和</body>
有人知道怎么做吗?这就是我到目前为止所做的:
$contents = file_get_contents($_GET['file']);
$title = preg_replace("/.*<title[^>]*>|<\/title>.*/si", "", $file);
$body = preg_replace("/.*<body[^>]*>|<\/body>.*/si", "", $file);
我需要在文本框中回显标题,在文本区域中回复正文。