1. class, this
<?php
class ClassA
{
public $name = "Park";
function FunctionA()
{
return "My name is {$this->name}.\n";
}
}
$sample = new ClassA;
echo $sample->FunctionA();
?>
'Programming Language > PHP' 카테고리의 다른 글
[php] 삼항연산자 예제 보기 (0) | 2021.11.10 |
---|---|
[php] 클래스 예제로 이해하기 class, this (0) | 2021.11.10 |
[php] 상수를 선언하는 방법 define() (0) | 2021.11.10 |
[php] 상수를 선언하는 방법 const (0) | 2021.11.10 |
[php] 변수를 선언하는 방법 $a $b $c $d (0) | 2021.11.10 |