如何修复 inlcude_once 显示 php 作为 Dreamweaver 中的仅输出错误?
How to fix inlcude_once showing php as output only error in dreamweaver?
我正在使用 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 在 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。