base_url() 函数在 codeigniter 中不起作用
2022-08-30 08:57:39
在我的 Web 应用程序中使用代码标志器。我正在尝试使用base_url()函数,但它显示空结果。我也通过自动加载文件使用自动加载助手,但似乎也不起作用。我也定义了基本常数,但都是徒劳的。
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><?php echo $title; ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="stylesheet" href="<?php echo base_url();?>/css/template/default.css" type="text/css" />
<script type="text/javascript">
//<![CDATA[
base_url = '<?= base_url();?>';
//]]>
</script>
</head>