我正在尝试学习PHP,所以我很可能会犯一个非常初学者的错误。
基本上,我有一个page.php文件,它是我想要创建的页面的类文件,我想在home.php页面中包含它(我使用require函数)。然而,没有任何表现。我正在根据我正在阅读的一本书做这件事,而且似乎在那里工作得很好。
page.php文件:
<?php
class Page {
// attributes
public $content;
public $title = "TLA Consulting Pty Ltd";
public $keywords = "TLA Consulting, Three Letter Abbreviation, some of my best friends are search engines";
public $buttons = array("Home" => "home.php", "Contact" => "contact.php", "Services" => "services.php", "Site Map" => "map.php");
public function __set($name, $value) {
$this->$name = $value;
}
public function display() {
echo "<html>\n<head>\n";
$this->displayTitle();
$this->displayKeywords();
$this->displayStyle();
echo "</head>\n<body>\n";
$this->displayHeader();
$this->displayMenu($this->buttons); // try this line without giving it the parameter
echo $this->content;
$this->displayFooter();
echo "</body>\n</html>";
}
public function displayTitle() {
echo "<title>$this->title</title>";
}
public function displayKeywords() {
echo "<meta name=\"keywords\" content=\"$this->keywords\" />";
}
public function displayStyle() {
?>
<style>
h1 {
color: white;
font-size: 24px;
text-align: center;
font-family: helvetica, arial, sans-serif;
}
.menu {
color: white;
font-size: 12px;
text-align: center;
font-family: helvetica, arial, sans-serif;
font-weight: bold;
}
td {
background-color: black;
}
p {
color: black;
font-size: 12px;
text-align: justify;
font-family: helvetica, arial, sans-serif;
}
</style>
<?php
}
public function displayHeader() {
?>
<table width="100%" cellpadding="12" cellspacing="0" border="0">
<tr bgcolor="black">
<td aling="left"><img src="http://i.imgur.com/xBrUZ.png" alt="Iron Man's finger" /></td>
<td><h1>TLA Consulting Pty Ltd</h1></td>
</tr>
</table>
<?php
}
public function displayMenu($buttons) {
echo "<table width=\"100%\" bgcolor=\"white\">\n";
echo "<tr>\n";
// calculate button size
$width = 100 / count($buttons);
while (list($name, $url) = each($buttons)) {
$this -> displayButton($width, $name, $url, !this->IsURLCurrentPage($url));
}
echo "</tr>\n</table>\n";
}
public function IsURLCurrentPage($url) {
if (!strpos($_SERVER['PHP_SELF'], $url)) {
return false;
}
else {
return true;
}
}
public function displayButton($width, $name, $url, $active = true) {
if ($active) {
echo "<td width=\"".$width."%\">
<a href=\"$url\"><img src=\"http://i.imgur.com/xBrUZ.png\" alt=\"$name\" /></a>
<a href=\"$url\"><span class=\"menu\">$name</span></a>
</td>";
}
else {
echo "<td width=\"".$width."%\">
<img src=\"http://i.imgur.com/xBrUZ.png\" />
<span class=\"menu\">$name</span>
</td>";
}
}
public function displayFooter() {
echo "<p>I am a footer ololz</p>";
}
}
?>
home.php:
<?php
require("page.php");
$homepage = new Page();
$homepage->content = "<p>Hi there, I like blueberries greatlly.</p>
<p>I hope you'll join me in loving blueberries!</p>"
$homepage->display();
?>
任何见解都将受到赞赏。
答案 0 :(得分:4)
答案 1 :(得分:2)
你使用php的开头和结尾不一致。
例如:
public function displayStyle() {
?>
<style>
h1 {
color: white;
font-size: 24px;
text-align: center;
font-family: helvetica, arial, sans-serif;
}
.menu {
color: white;
font-size: 12px;
text-align: center;
font-family: helvetica, arial, sans-serif;
font-weight: bold;
}
td {
background-color: black;
}
p {
color: black;
font-size: 12px;
text-align: justify;
font-family: helvetica, arial, sans-serif;
}
</style>
<?php
}
你正在启动一个函数,然后你通过关闭php块“?&gt;”来打破它并粘贴样式表部分,该部分将在页面加载时回显。 如果要使用此功能显示样式,则必须将其设为:
<?php
public function displayStyle() {
echo "<style>".
"h1 {".
"color: white;";
}
?>
答案 2 :(得分:1)
在home.php文件中,你在ine 10中缺少一个分号
在page.php文件中,您在第86行缺少字符“$”
$this -> displayButton($width, $name, $url, !$this->IsURLCurrentPage($url));