English 中文(简体)
PHP - 全球变量正在清理
原标题:PHP - Global variables being cleared

我有一份PHP文档,用一台从另一个自动卸载的PHP文档中调来的。 在这份档案中,界定了少量全球变量:

$foobar = "foo";
$bazqux = "baz";

class FooClass {
    private $foo;

    public function __construct() {
        global $foobar;
        $this->foo = $foobar; // $foobar is <null> here
    }
}

然而,在我管理这一法典时,根据Appa 2(Im利用VS.php作为我的国际民主和选举援助学会)的XDebug,全球可变的 $是“”。 当我按照国际住户调查局的正常方案快车管下,我遇到同样的问题。

我走过了我的所有手法,“$”的象征只出现在这一来源档案中,因此,在别处就没有写过。

之后,我将其从全球变量改为定义(a)不变,并做了细微的工作。

任何想法?

最佳回答

使用超级全球——<代码>GLOBALS。

$this->foo = $GLOBALS["foobar"];

EDIT:

<?php
$foobar = "foo";
$bazqux = "baz";

class FooClass {
    private $foo;

    public function __construct() {
        global $foobar;
        $this->foo = $foobar;  
    }
    function display() {
      print $this->foo;
    }
}

$a=new FooClass;
print $a->display();
?>
问题回答

法典对我课以罚款。 该法典没有任何错误。 产出如下:

$foobar = "foo";
$bazqux = "baz";

class FooClass {
    private $foo;

    public function __construct() {
        global $foobar;
        $this->foo = $foobar; // $foobar is foo here
   }
}

仅仅因为这两项可变宣言是列入文字的第一点,并不意味着它们实际上在全球范围。

从功能(汽车卸载机)中添加文字,将使其在当地功能中居住。 你获得了通知,因为你的自动载荷范围甚至会使其保持下去。

解决办法: 还使用<条码>全球说明,然后将斜体放在你的文字上。

如果您的变数不是静态的,你必须打上<条码>($->variable,如果您的变数是静态的话,你必须打上<条码>。

for example:

    class Entry {

          private static $y= "";
          private $x= "";

          public function start() {
          $a=$this->x;
          $b=self::$y;
    }
  }




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签