php 两次include后,第一个include里的变量无效了
php
目录结构+ root
index.php
config.php
+c
index.php
root/config.php 里的内容
$shell['jquery'] = "jquery 1.4";
?>
root/index.php 里的内容
include "config.php";
print $shell['jquery'];
?>
root/c/index.php 里的内容
include "../index.php";
?>
访问root/index.php返回
jquery 1.4
访问root/c/index.php返回
Notice: Undefined variable: shell in H:\software\dev\php\xampp\htdocs\phptest\index.php on line 3
请问,两次include 后变量为什么会失效呢?正确的做法应该是怎样做?
谢谢大家了
回复讨论(解决方案)
首先,解析顺序如下
1.文件路径是绝对路径?是, 包含, 解析结束。不是, 进入下一步。
2.文件路径是相对路径(就像你的"../index.php")?是, 跳过include_path, 解析相对路径。不是,下一步。
PS:相对路径的基点, 永远是“当前工作目录”.即你在这个目录里执行了脚本,不一定是脚本文件所存在的目录
比如你在/root里执行了`php /var/www/index.php`,“当前工作目录”是/root而不是/var/www/,/var/www是
current_script_dir。
3.php.ini中的include_path,比如".:somepath:current_script_dir"。根据DEFAULT_DIR_SEPARATOR常量(这里是":")分割出待处理列表
"."(当前工作目录),"somepath(你自定义的目录)","current_script_dir"这三个
把包含的文件名附加这些路径后面, 逐个尝试。
所以你的问题就变成
#访问root/c/index.php<?phpinclude "../index.php"; #执行第二步,include进/root/index.phpinclude "config.php"; #执行第三?,当前工作目录为/root/c,current_script_dir也为/root/c,#估计你也没有自定义include_path,所以尝试包含/root/c/config.php,没有这个文件print $shell['jquery'];#Undefined variable?>
这是我的理解,欢迎各位交流与指正
不会的!
只要你没有 root/c/config.php 这个文件
那么 root/config.php 就一定会加载到
你可以用 print_r(get_included_files()); 看一下都加载了哪些文件
要用java的思维方式去写php
要用java的思维方式去写php。我是只require类
谢谢各位,这个问题在百度知道解决了
http://zhidao.baidu.com/question/1638100265932728980.html?quesup2&oldq=1
感谢@Anew_G, 因为我是新手,所以不知你的分析正不正确,好像是对的,分给你了
谢谢各位,这个问题在百度知道解决了
http://zhidao.baidu.com/question/1638100265932728980.html?quesup2&oldq=1
感谢@Anew_G, 因为我是新手,所以不知你的分析正不正确,好像是对的,分给你了
最好不要使用Register Globals
理由: http://php.net/manual/zh/security.globals.php

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove
