dongzi0857 2018-04-03 13:24
浏览 456
已采纳

在PHP中使用include函数

So, i am working on an eCommerce style of website and i own a host/domain. From my understanding, i should place my PHP files in another location than public_html(for security purposes), the location of index.html being in /home/user/public_html. I want to put my PHP files in the php folder. I have tried using:

include("home/user/php/file.php") or include("../php/file.php").

I have enabled the use of these commands in the ini file and i also tried to set permissions to the folders(read/write/execute).One thing that was working is to set a subdomain with its "root" folder to the php folder, but i guess that defeats the purpose of having the files somewhere else on the server, especially because i was using an object to place my php like so:

<object class="php-script" data="database.php"></object>

and under my java scripts i put :

<?php
    include("/home/user/php/database.php");
?>

Thanks in advance for helping me.

  • 写回答

2条回答 默认 最新

  • doujiao6507 2018-04-03 13:37
    关注

    Normally using relative paths with include or require means using relative paths starting from the directory your first called script of an URL call is located.

    Example:

    application
        src
            database.php
            somescript.php
        public (document root)
            index.php
            news.php
    

    http://example.com/index.php

    public/index.php

    <?php
    include '../src/database.php'
    

    This should be easy to understand.

    http://example.com/news.php

    public/news.php

    <?php
    include '../src/somescript.php';
    

    src/somescript.php

    <?php
    include '../src/database.php';
    

    So take care of the include in somescript.php. It doesn't matter that it is in the src folder. An include like include 'database.php' will fail, because it's the path of the news.php which matters.


    Edit (2018-04-04)

    I forgot to mention. Consider to use require() / require_once() instead of include() / include_once().

    Difference between require, include, require_once and include_once?

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置