gpt4 book ai didi

php - 如何修复 inlcude_once 在 Dreamweaver 中将 php 显示为仅输出错误?

转载 作者:行者123 更新时间:2023-11-28 19:25:19 24 4
gpt4 key购买 nike

我正在使用 PHP 在 Dreamweaver 上构建一个网站,这只是它的开始。include_once 不显示图像。它仅在设计选项卡中显示 PHP。

我也试过包含,但也不起作用。我也尝试了其他文件,仍然是同样的问题。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>The Pickzone</title>
<link rel="stylesheet" href="style/style.css" type="text/css" media="screen" />
</head>

<body>
<div align="center" id="mainWrapper">
<?php include_once('template_header.php');?>
<div id="pageContent">test</div>
<?php include_once('template_footer.php');?>

</div>

最佳答案

尝试在您的包含文件前面添加 __DIR__ 以提供磁盘上的完整路径。例如。 /var/www/path/to/file/on/disk/.

<?php include_once __DIR__ . 'template_header.php';?>
<div id="pageContent">test</div>
<?php include_once __DIR__ . 'template_footer.php';?>

参见 php documentation了解更多信息。

关于php - 如何修复 inlcude_once 在 Dreamweaver 中将 php 显示为仅输出错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56365447/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com