ホームページ >バックエンド開発 >PHPチュートリアル >なぜ結果が出ないのでしょうか?
なぜ結果が得られないのでしょうか?
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> <?php class test{ public $count=0; public function add(){ $count=$count+2; return $count; } } $a=new test(); echo $a->add(); ?>