这是我的目录结构:
类
- myphpclass.php
控制器
- controller.php
的index.php
现在,我想在我的控制器中包含myphpclass.php,但我不知道如何处理它。
我尝试include('classes/myphpclass.php');
但我无法让它发挥作用
答案 0 :(得分:2)
require_once(dirname(__FILE__).'/../classes/myphpclass.php'));
最好使用require_once:Difference between require, include and require_once?
答案 1 :(得分:1)
使用正斜杠启动所有路径 - 然后它们都与ROOT相关。
$(function () {
$('#orderModal').modal({
keyboard: true,
backdrop: "static",
show: false,
}).on('show', function () {
var getIdFromRow = $(event.target).closest('tr').data('id');
$(this).find('#orderDetails').html($('<b> Order Id selected: ' + getIdFromRow + '</b>'));
});
});