php class를 관리

· 17년 전 · 2028
추천: 0 , 조회: 79
ㅇ php.net의 class관련 소스들을 응용해서 java의 패키지형식으로 소스를 관리하도록 만들어 봤습니다.
ㅇ php에서 작성한 class의 위치를 /lib/class로 설정하고
class밑의 디렉토리를 java 패키지 같이 설정하여 사용합니다.

ex) /lib/class/common/class.common.object.php
/lib/class/util/class.util.string.php
/lib/class/cont/class.cont.photo.php
ㅇ 생성되는 class는 각자의 성격에 맞는 폴더 아래에서 관리하는거죠!

/********** class.common.object.php ************/
class class_common_object
{
var $m_name = '';
function class_common_object($name)
{
$this->m_name =$name;
register_shutdown_function(array(&$this, '_class_common_object'));
}

function _class_common_object()
{
}

function getName() { return $this->m_name; }
}


/********** func.class.php ************/
function &func_classFactory($classfilename)
{

$classname = func_classInclude($classfilename);
if (!$classname) return;

$code = "return new {$classname}(";
if (func_num_args() > 1)
{
$params = array_slice(func_get_args(),1);
$c = count($params);
for($i=0;$i<$c;++$i)
{
if ($i>0) $code .= ',';
$code .= '$params['.$i.']';
}
}
$code .= ');';
$csObj = eval($code);
return $csObj;
}

function func_classInclude($classfilename)
{
$clsarr = explode(".", $classfilename);
$classname = str_replace(".","_",$classfilename);

for($i=1; $i<count($clsarr)-1; $i++) $filename .= "/" . $clsarr[$i];
$filename =$g_arConfig[CLASS_ROOT] . $filename . "/$classfilename.php";

if (!class_exists($classname))
{
if (file_exists($filename)) include_once($filename);
else
{
echo "\nCould not load library $filename \n";
return null;
}
}
return $classname;
}


/*********** SAMPLE.PHP ***********/
include "func.class.php";
$csObj = func_classFactory("class.common.object", "test");
echo $csObj->getName();

[이 게시물은 관리자님에 의해 2011-10-31 17:12:10 PHP & HTML에서 이동 됨]
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
16년 전 조회 1,718
16년 전 조회 2,475
16년 전 조회 2,098
16년 전 조회 2,270
16년 전 조회 2,497
16년 전 조회 1,772
16년 전 조회 2,648
16년 전 조회 2,539
16년 전 조회 4,836
16년 전 조회 1,617
16년 전 조회 1,355
16년 전 조회 2,309
16년 전 조회 2,263
16년 전 조회 1,827
16년 전 조회 2,378
16년 전 조회 2,593
16년 전 조회 1,689
16년 전 조회 2,053
16년 전 조회 2,232
16년 전 조회 1,320
16년 전 조회 2,018
16년 전 조회 1,694
16년 전 조회 2,200
16년 전 조회 1,614
16년 전 조회 2,515
16년 전 조회 2,191
16년 전 조회 6,201
16년 전 조회 2,209
16년 전 조회 3,992
16년 전 조회 1,748
16년 전 조회 2,034
16년 전 조회 2,392
17년 전 조회 2,912
17년 전 조회 2,618
17년 전 조회 3,050
17년 전 조회 3,283
17년 전 조회 3,309
17년 전 조회 2,109
17년 전 조회 1,833
17년 전 조회 1,699
17년 전 조회 2,026
17년 전 조회 1,504
17년 전 조회 2,264
17년 전 조회 2,037
17년 전 조회 1,892
17년 전 조회 1,591
17년 전 조회 2,457
17년 전 조회 3,529
17년 전 조회 2,429
17년 전 조회 2,029
17년 전 조회 1,815
17년 전 조회 2,333
17년 전 조회 5,015
17년 전 조회 1,726
17년 전 조회 2,468
17년 전 조회 2,429
17년 전 조회 2,707
17년 전 조회 2,431
17년 전 조회 4,744
17년 전 조회 3,244
17년 전 조회 3,156
17년 전 조회 1,870
17년 전 조회 1,529
17년 전 조회 4,257
17년 전 조회 1,928
17년 전 조회 1,924
17년 전 조회 2,415
17년 전 조회 2,175
17년 전 조회 1,811
17년 전 조회 4,222
17년 전 조회 2,053
17년 전 조회 3,388
17년 전 조회 3,316
17년 전 조회 1,314
17년 전 조회 2,126
17년 전 조회 1,884
17년 전 조회 2,141
17년 전 조회 2,942
17년 전 조회 3,305
17년 전 조회 3,505
17년 전 조회 3,622
17년 전 조회 1,717
17년 전 조회 1,711
17년 전 조회 2,520
17년 전 조회 2,266
17년 전 조회 2,556
17년 전 조회 3,112
17년 전 조회 3,580
17년 전 조회 2,655
17년 전 조회 1,924
17년 전 조회 3,508
17년 전 조회 3,356
17년 전 조회 3,325
17년 전 조회 4,211
17년 전 조회 2,845
17년 전 조회 2,706
17년 전 조회 2,959
17년 전 조회 3,193
17년 전 조회 2,908
17년 전 조회 1,756