我正在尝试像这样回显 base_url() :
editor_header.php
<link href="<?php echo base_url(); ?>/css/bootstrap.css" rel="stylesheet" media="screen">
editor_header.php 的控制器如下所示:
<?php
class Pages extends CI_Controller {
public function view($page = 'home')
{
if ( ! file_exists('application/views/pages/'.$page.'.php'))
{
// Whoops, we don't have a page for that!
show_404();
}
$data['title'] = ucfirst($page); // Capitalize the first letter
$this->load->view('head&foot/editor_header', $data);
}
}
?>
我已经像这样在 autoload.php 中启用了 url_helper
$autoload['helper'] = array('url');
但我仍然得到错误:
Parse error: syntax error, unexpected T_VARIABLE, expecting T_FUNCTION in /Applications/XAMPP/xamppfiles/htdocs/editor/application/controllers/pages.php on line 5
pages.php 是上面的控制器。
我的问题
请谁能告诉我为什么 editor_header.php 不能使用 base_url?提前致谢。