Php class içinde global değişken kullanımı ? Php Class Kullanımı

Paylaş.

<?php
$desigken = ‘ben globalim’;
echo $desigken  ;
class Rehber {

var $adi = ‘Burhan’;
function yaz(){
global  $desigken ;

echo $this->adi ;
echo  $desigken ;

}
}

$reh = new Rehber();
$reh->yaz();
?>

VN:F [1.9.22_1171]
Rating: 4.0/10 (3 votes cast)
VN:F [1.9.22_1171]
Rating: +1 (from 1 vote)
Php class içinde global değişken kullanımı ? Php Class Kullanımı, 4.0 out of 10 based on 3 ratings