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 test{ | |
var $foo = "ok works"; | |
function test_function(){ | |
echo "aaa ".$this->foo." aaa"; | |
echo "</br></br>"; | |
echo "aaa $this->foo aaa"; | |
echo "</br></br>"; | |
} | |
} | |
?> |
결과는
aaa ok works aaaㅇㅇ 먹힌다.
aaa ok works aaa
끗
댓글 없음:
댓글 쓰기