Created
June 13, 2013 19:45
-
-
Save adililhan/5776734 to your computer and use it in GitHub Desktop.
PHP'de sınıf içinde bulunan closure fonksiyondan üye metota erişmeyi sağlayan kod.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class ClosureTest { | |
public $getInfo; | |
public function __construct() { | |
$that = $this; // Yerel degisken olusturuldu (local variable) | |
$this->getInfo = function() use($that) { | |
$that->getCity(); | |
return 'Ben şehir bilgisini getiren metottan sonra çağırıldım.'; | |
}; | |
} | |
public function getCity() { | |
echo 'Angara'; | |
} | |
} | |
$ClosureTest = new ClosureTest; | |
// Sinif icindeki closure fonksiyona erismek icin once bir degiskene atama yapmalisiniz. | |
$cT = $ClosureTest->getInfo; | |
echo $cT(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
closure method'a erişmek için değişkene atama yapmak gereği bana çok saçma geldi. atama yapmadan kullanabilsek dadından yinmezdi :)