我在我的 javascript 文件中使用 php,我的 .htaccess 看起来像
<FilesMatch "\.css$">
SetHandler application/x-httpd-php
Header set Content-type "text/css"
</FilesMatch>
<FilesMatch "\.js$">
SetHandler application/x-httpd-php
Header set Content-type "application/javascript"
</FilesMatch>
我现在可以在我的 javascript 文件中使用 php,但 codeigniter 函数不起作用。例如
$('#example').dataTable( {
"bProcessing": true,
"sAjaxSource": "<?php $CI = get_instance(); echo base_url(); ?>"
} );
给出错误
<b>Fatal error</b>: Call to undefined function get_instance() in <b>C:\xampp\htdocs\_init\assets\js\custom.js</b> on line <b>88</b><br />
我想也许我需要以类似于 wordpress 的方式加载 codeigniter 环境require( '../wordpress/wp-load.php' );
有没有办法我可以以类似的方式加载 codeigniter,以便我的 javascript 和 css 文件可以使用 codeigniter 函数?