dongzi0857 2018-04-03 05: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 05: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 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部