不想php文件被单独浏览怎么处理

WBOY
Release: 2016-06-13 13:22:47
Original
1085 people have browsed it

不想php文件被单独浏览怎么办
为了方便处理,我将index.php拆分成了几个文件,运行时用include()引用,怎样做

------解决方案--------------------
在 index.php 里定义一个 常量,然后在分开的小文件里判断此常量是否已定义,如果没定义,就退出程序。
定义常量:

PHP code

difine ACCESS=true;
<br><font color="#e78608">------解决方案--------------------</font><br>也可以去掉小文件的执行权限
<br><font color="#e78608">------解决方案--------------------</font><br>顶一楼的
<br><font color="#e78608">------解决方案--------------------</font><br>不能被直接 url 访问<br>if(basename($_SERVER['PHP_SELF']) == basename(__FILE__)) return;<br>//以下是程序文件内容
<br><font color="#e78608">------解决方案--------------------</font><br>请将被include的文件放置在文档根目录之外。 <div class="clear">
                 
              
              
        
            </div>
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!