クラス2




PHPのテストです。

現在のチャンネルは5です。
--- ソースコード ---
	<?php

	$tv = new Television();
	$tv->setChannel(5);

	class Television {
		public $channelNo;

		function displayChannel() {
			print( '現在のチャンネルは'.$this->channelNo.'です。' );
		}

		function setChannel( $channel ) {
			$this->channelNo = $channel;
			$this->displayChannel();
		}
	}

	?>



最終更新日 2023/3/5