如何在CodeIgniter 2中获取基本网址。
2022-08-30 12:09:17
在配置中.php
$config['base_url'] = 'http://localhost/codeigniter/';
在视图中
<link rel="stylesheet" href="<?php base_url(); ?>css/default.css" type="text/css" />
=> Error: Call to undefined function base_url();
帮帮我