php中全局变量在多个文件中引用问题
问大家个问题:
能不能在A php文件中定义全局变量 ,B php文件引用并赋值,C php文件引用并访问,我测试了好像不行。B中赋值,C中只能看到A中的内容,看不到B改变后的值。
谢谢大家
回复讨论(解决方案)
当然可以,前提是
C.php
include 'A.php';include 'B.php';
B.php
include 'A.php';
C.php
include 'B.php';
你C php 没有引用B php吧?
两位版主好,我写了个简单的例子说明我的想法:
A.php
<?php $var_global;echo "<a href='B.php'>跳转到B赋值</a></br>";?>
B.php
<?php include "A.php";//这个单元来赋值$var_global = "B来赋值";echo "</br>B单元中var_global的值是:" . $var_global;echo "</br><a href='C.php'>跳转到查看结果";?>
C.php
<?phpinclude "A.php";//这个单元来访问echo "</br>C单元中var_global的值是:" . $var_global;?>
执行的结果是:
A.php:->
跳转到B赋值
B.php->
B单元中var_global的值是:B来赋值
跳转到查看结果
C.php->
跳转到B赋值
C单元中var_global的值是:
即C中获得的值为空,不是我想要的 “B来赋值”
当然可以,前提是
C.php
include 'A.php';include 'B.php';
B.php
include 'A.php';
C.php
include 'B.php';
我的想法就是像C那样,在A中定义一些全局变量,在B中通过流程赋值改变他,在C和其它的php单元中可以使用这些改变之后的全局变量,不用SESSION。可行么?
顺序的全部include,应该是可以改变的,但是B和C之间没有这种引用关系,写起来不明晰
你C php 没有引用B php吧?
而且有时候C.php是不能include B.php的,例如
B是一个登陆页面
C是其他的业务页面,B中登陆做个标记,C中判断这个标记
那是不可以的!
你不在 C.php 中引用 B.php,那么 B.php 如何执行的?
如果不是包含关系,那就得通过参数传递或是用session
不合理的设计,为什么要这么绕来绕去。
那是不可以的!
你不在 C.php 中引用 B.php,那么 B.php 如何执行的?
如果不是包含关系,那就得通过参数传递或是用session
还是以登录作为例子,A中有个登录成功与否的标志$login,B中负责登陆,如果成功就 $login = "success",C中不管B执行不执行,就是判断$login是不是等于"success",不等于就不工作。
那就是只能用session或者cookie之类的了?
不合理的设计,为什么要这么绕来绕去。
我一直用C,初学php,正在学习C的哪些用法和php不同
对,你这种情况用session/cookie最适合不过了。
是的!
那是不可以的!
你不在 C.php 中引用 B.php,那么 B.php 如何执行的?
如果不是包含关系,那就得通过参数传递或是用session
还是以登录作为例子,A中有个登录成功与否的标志$login,B中负责登陆,如果成功就 $login = "success",C中不管B执行不执行,就是判断$login是不是等于"success",不等于就不工作。
那就是只能用session或者cookie之类的了?
你用 C 是写桌面程序的,与用户的交互是在程序运行期间完成的
而网站程序是间断运行的,不会保存现场(也无法保存现场)
非常感谢两位版主热心帮助

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

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

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

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
