在PHP中實現模板渲染可以使用各種方式,下面列舉了一種比較常用的方法:
<!DOCTYPE html>
<html>
<head>
<title><?php echo $pageTitle; ?></title>
</head>
<body>
<h1><?php echo $heading; ?></h1>
<p><?php echo $content; ?></p>
</body>
</html>
<?php
$pageTitle = "Welcome to My Website";
$heading = "Hello World!";
$content = "This is some sample content.";
// Include the template file
include 'template.php';
?>
這種方法簡單易懂,適用于小型項目。對于大型項目,可以考慮使用模板引擎,如Twig、Smarty等,提供更多的功能和靈活性。