[php] 간단 Properties class test 5.0 이상에서 > 팁앤테크

본문 바로가기
사이트 내 전체검색

팁앤테크

[php] 간단 Properties class test 5.0 이상에서

페이지 정보

본문

<?
/********************

* Properties class
*
* Date : 2010.
*
* @author
*
* desc :
* map 자료구조 형태의 프로퍼티를 관리하는 class
*
*/


class Properties
{
private $list = null; // 프로퍼티를 담을 배열

/*******************
* 생성자
* arg[0] : 타입 - Properties class type 이어야 한다. */
public function __construct(Properties $defaultProperties=null)
{
if ($defaultProperties)
{
$this->list = $defaultProperties->getList();
}
}


/*******************
* property 값을 리턴한다.
* arg[0] : list의 key */
public function getProperty($key)
{
if (is_array($this->list) && $key)
return $this->list[$key];
else
return "";
}


/*******************
* property 값을 리턴한다.
* arg[0] : list의 key */
public function setProperty($key, $value)
{
$this->list[$key] = $value;
}


/*******************
* property 값을 배열형태로 받는다.
* arg[0] : property 배열 */
public function setList($list)
{
$this->list = $list;
}


/*******************
* property 배열을 리턴한다.
* */
public function getList()
{
return $this->list;
}
}


/*
$p = new Properties();
$p->setProperty('apple', '사과');

$props = new Properties($p);
echo $props->getProperty('apple')."<br/>";
var_dump($props->getList());


result:
>> 사과
>> array(1) { ["apple"]=> string(6) "사과" }
*/


class Item
{
public $name = "";
public $price = 0;
protected $spec = null;

public function __construct($name, $price)
{
$this->name = $name;
$this->price = $price;
}

public function getSpec()
{
return $this->spec;
}

public function setSpec( Properties $props )
{
$this->spec= $props;
//echo get_class($this->props);
}

}



$p = new Properties();
$p->setProperty('width', '400');
$p->setProperty('height', '700');
$p->setProperty('forecolor', 'silver');
$p->setProperty('backcolor', 'black');

$item = new Item('iphone', 300000);
$item->setSpec($p);

echo $item->getSpec()->getProperty('forecolor');
/*
result:
>> silver
*/
?>
추천0

댓글목록

등록된 댓글이 없습니다.

Total 825건 13 페이지
  • RSS
팁앤테크 목록
번호 제목 글쓴이 조회 추천 날짜
525 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 15947 0 07-27
524 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 15918 0 12-27
523 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 15902 0 06-11
522 쎄엠쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 15849 0 03-06
521 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 15821 0 06-24
520 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 15789 0 03-04
519 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 15787 0 06-11
518 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 15786 0 04-25
517 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 15777 0 06-01
516 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 15759 0 11-08
515 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 15752 0 07-04
514 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 15736 0 08-21
513 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 15733 0 06-19
512 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 15711 0 01-07
511 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 15663 0 11-28
510 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 15658 0 11-19
509 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 15645 0 06-20
508 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 15634 0 11-26
열람중 론이쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15632 0 06-07
506 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 15626 0 11-12
505 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 15609 0 02-16
504 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 15606 0 10-03
503 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 15605 0 01-09
502 창호지쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15576 0 11-14
501 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 15549 0 05-22

검색

회원로그인

회원가입

사이트 정보

株式会社YHPLUS / 대표 : ZERO
〒140-0011 東京都品川区東大井2-5-9-203
050-5539-7787
오픈카카오톡 (YHPLUS) :
https://open.kakao.com/o/slfDj15d

접속자집계

오늘
7,093
어제
7,784
최대
8,233
전체
1,538,954
Copyright (c) 株式会社YHPLUS. All rights reserved.