我正在使用codeigniter開發我們的應用程序。我試圖使用base_url()函數,但它顯示空的結果。我已經通過autoload文件使用了自動加載助手,但是它似乎也不起作用。我也定義了基本常量,但都是徒勞的。請幫忙。base_url()函數在codeigniter中不起作用
<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>
你能告訴我們你的代碼,好嗎? – Sampson
@Jonathan Sampson:我曾嘗試使用echo base_url();在主體部分,並得到一個空的結果 –
@Sanks你能告訴我們生成的HTML嗎?我發現您在腳本區域中使用了兩個短標籤進行打印,而在樣式表區域中使用標準回顯進行輸出。 – Sampson