PHP 코드
location.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
class Testclass
{
public $name ;
public $dong ;
function __construct ( $name , $dong )
{
$this -> name = $name ;
$this -> dong = $dong ;
}
public function locaiton ()
{
print_r( " { $this -> name } 는 { $this -> dong } 에 살고 있습니다." );
}
}
?>
|
main.php
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
//location.php 파일에 있는 클래스 파일을 호출
require_once ( "location.php" );
$testUser1 = new Testclass( "유저1" , "101동" );
$testUser1 -> location();
print_r( "<br><br>" );
$testUser2 = new Testclass( "유저2" , "102동" );
$testUser2 -> location();
?>
|