require を使用して PHP で HTML マークアップを作成したいのですが、これは可能ですか?
今これは私の index.php のコードです:
<?php
require('header.php')
require('body.php')
htmlHead();
htmlContent();
?>
次に、header.php ファイルに次のように記述します。
<?php
function htmlHead(){
echo '
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Hello World</title>
<link rel="stylesheet" href="/style.css" type="text/css">
</head>';
}
?>
そして、私のボディタグの場合:
<?php
function htmlContent(){
echo' <body>
<div id="wrapper">
<p>Hello World!</p>
</div>
</body>
</html>
';
}
?>
前もって感謝します!