我有一个非常简单的课程
if(!isset($_GET['page'])) {
$_GET['page'] = "home";
}
class be_site {
var $thelink;
public function get_static_content($page) {
$this->check_path($page);
} // end function
private function check_path($pathfile) {
if(file_exists($pathfile)) {
$b = 1;
include_once($pathfile);
} else {
$b = 2;
include_once('error_page.php');
}
}// End Function
public function selectedurl($subpage, $linkname){
if($subpage == $this->thelink) {
echo "<strong>" . $linkname . "</strong>";
} else {
echo $linkname;
}// End if
} // End function
} /// End site class
现在我在index.php中创建一个新对象
include('connections/functions.php'); $site_object = new be_site;
在内容中我有
//get file
if(isset($_GET['subpage'])){
$site_object->get_static_content('content/' . $_GET['subpage'] . '.php');
}else {
$berkeley_object->get_static_content('content/' . $_GET['page'] . '.php');
}
好的,一切正常。但是如果调用了一个包含的页面,我会尝试使用我的其他方法来包装链接,如果根据$ _GET ['page']值选择它,则将其设为粗体。
例如
<ul>
<li><a href="index.php?page=team&subpage=about" target="_self" title="opens in same window" >
<?php $site_object->thelink = "about_us";
$site_object->selectedurl($_GET['subpage'],'about Our Website'); ?>
</a>
</li>...
等等每个链接。 现在可以在对象中设置变量但不能调用方法。我收到了错误
Fatal error: Call to undefined method stdClass::selectedurl()
只是想知道为什么我能够从包含的文件中设置类中的$ thelink变量但不能调用公共函数?
由于
答案 0 :(得分:2)
更改此代码:
<?php $site_object->thelink = "about_us";
$site_object->selectedurl($_GET['subpage'],'about Our Website'); ?>
对此:
<?php
global $site_object;
$site_object->thelink = "about_us";
$site_object->selectedurl($_GET['subpage'],'about Our Website'); ?>
这不起作用的原因是由于在函数中使用include的性质。如果在函数内使用include(be_site :: check_path),则变量作用域特定于该函数。请参阅http://php.net/manual/en/function.include.php示例#2。