php class를 관리

· 17년 전 · 2000
추천: 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,688
16년 전 조회 2,447
16년 전 조회 2,065
16년 전 조회 2,247
16년 전 조회 2,469
16년 전 조회 1,748
16년 전 조회 2,622
16년 전 조회 2,514
16년 전 조회 4,813
16년 전 조회 1,592
16년 전 조회 1,326
16년 전 조회 2,279
16년 전 조회 2,240
16년 전 조회 1,794
16년 전 조회 2,357
16년 전 조회 2,566
16년 전 조회 1,661
16년 전 조회 2,026
16년 전 조회 2,204
16년 전 조회 1,297
16년 전 조회 1,995
16년 전 조회 1,676
16년 전 조회 2,174
16년 전 조회 1,595
16년 전 조회 2,488
16년 전 조회 2,166
16년 전 조회 6,180
16년 전 조회 2,181
16년 전 조회 3,969
16년 전 조회 1,722
16년 전 조회 2,010
16년 전 조회 2,360
16년 전 조회 2,887
16년 전 조회 2,591
17년 전 조회 3,025
17년 전 조회 3,259
17년 전 조회 3,279
17년 전 조회 2,080
17년 전 조회 1,806
17년 전 조회 1,674
17년 전 조회 1,998
17년 전 조회 1,485
17년 전 조회 2,234
17년 전 조회 2,002
17년 전 조회 1,863
17년 전 조회 1,562
17년 전 조회 2,439
17년 전 조회 3,503
17년 전 조회 2,407
17년 전 조회 2,001
17년 전 조회 1,788
17년 전 조회 2,308
17년 전 조회 4,994
17년 전 조회 1,710
17년 전 조회 2,448
17년 전 조회 2,411
17년 전 조회 2,679
17년 전 조회 2,401
17년 전 조회 4,720
17년 전 조회 3,217
17년 전 조회 3,130
17년 전 조회 1,846
17년 전 조회 1,506
17년 전 조회 4,237
17년 전 조회 1,906
17년 전 조회 1,908
17년 전 조회 2,390
17년 전 조회 2,153
17년 전 조회 1,787
17년 전 조회 4,201
17년 전 조회 2,033
17년 전 조회 3,371
17년 전 조회 3,298
17년 전 조회 1,291
17년 전 조회 2,107
17년 전 조회 1,861
17년 전 조회 2,118
17년 전 조회 2,923
17년 전 조회 3,286
17년 전 조회 3,489
17년 전 조회 3,602
17년 전 조회 1,702
17년 전 조회 1,693
17년 전 조회 2,506
17년 전 조회 2,248
17년 전 조회 2,539
17년 전 조회 3,080
17년 전 조회 3,562
17년 전 조회 2,635
17년 전 조회 1,910
17년 전 조회 3,496
17년 전 조회 3,338
17년 전 조회 3,307
17년 전 조회 4,187
17년 전 조회 2,828
17년 전 조회 2,688
17년 전 조회 2,940
17년 전 조회 3,171
17년 전 조회 2,889
17년 전 조회 1,729