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 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 R语言卸载之后无法重装,显示电脑存在下载某些较大二进制文件行为,怎么办
  • ¥15 java 的protected权限 ,问题在注释里