不能包含php类

时间:2015-07-09 14:50:24

标签: php path

这是我的目录结构:


  - myphpclass.php
控制器
  - controller.php
的index.php

现在,我想在我的控制器中包含myphpclass.php,但我不知道如何处理它。

我尝试include('classes/myphpclass.php');

之类的东西

但我无法让它发挥作用

2 个答案:

答案 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>'));
});
});