HTML(or XML) & CSS & JavaScript

[PHP] Class 만들기

YEJI ⍢ 2022. 12. 12. 14:32
728x90

Class를 만들고 Constructor의 변수를 초기화 시켜줍니다.

<!EOCTYPE html>
<body>
	<h1>My first PHP page</h1>
	<?php
		class Fruit {
			function Fruit() {
				$this->berry = "Strawberry";
			}
		}

		$f = new Fruit();
		echo $f->berry;
	?>
</body>

$f라는 새로운 객체(object)를 선언해주고, 객체의 변수를 출력하면 Strawberry가 출력됩니다.

 

 

 

◡̈