2017-04-20 00:52:37 +00:00
|
|
|
<?php
|
|
|
|
|
2017-05-02 04:14:48 +00:00
|
|
|
class ForLoopReference1 {
|
|
|
|
public function getThat() {
|
|
|
|
for ($that = $this; null !== $that; $that = $that->foo()) {
|
2017-04-20 00:52:37 +00:00
|
|
|
}
|
|
|
|
}
|
2017-05-02 04:14:48 +00:00
|
|
|
|
|
|
|
public function foo() {
|
|
|
|
return $this;
|
|
|
|
}
|
2017-04-20 00:52:37 +00:00
|
|
|
}
|