Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$this在非对象范围内分配某些东西有什么缺点吗?
$this
<?php // begin of index.php $this = new Bootstrap();
我想从程序一开始就表现得像在一个实例中蜜蜂一样。
这被认为是个好主意吗?
这被认为是一个坏主意,因为它不起作用:
php > $this = 'foo'; PHP Fatal error: Cannot re-assign $this in php shell code on line 1
$this很特别,你不能在不应该使用它的地方使用它。