| 추천: 0 , 조회: 79 |
ㅇ 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();
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 1230 |
|
18년 전 | 1995 | |
| 1229 |
|
18년 전 | 2931 | |
| 1228 |
|
18년 전 | 2622 | |
| 1227 | 18년 전 | 2917 | ||
| 1226 | 18년 전 | 2353 | ||
| 1225 |
|
18년 전 | 2425 | |
| 1224 | 18년 전 | 2735 | ||
| 1223 |
|
18년 전 | 3979 | |
| 1222 |
mixdesign
|
18년 전 | 2625 | |
| 1221 |
|
18년 전 | 2740 | |
| 1220 | 18년 전 | 3201 | ||
| 1219 | 18년 전 | 2905 | ||
| 1218 | 18년 전 | 2092 | ||
| 1217 |
|
18년 전 | 2541 | |
| 1216 | 18년 전 | 2547 | ||
| 1215 |
mixdesign
|
18년 전 | 4032 | |
| 1214 |
|
18년 전 | 4783 | |
| 1213 | 18년 전 | 2313 | ||
| 1212 |
mixdesign
|
18년 전 | 2482 | |
| 1211 |
|
18년 전 | 2419 | |
| 1210 | 18년 전 | 3755 | ||
| 1209 |
mixdesign
|
18년 전 | 2372 | |
| 1208 |
mixdesign
|
18년 전 | 2374 | |
| 1207 |
mixdesign
|
18년 전 | 1716 | |
| 1206 |
mixdesign
|
18년 전 | 1998 | |
| 1205 |
mixdesign
|
18년 전 | 2698 | |
| 1204 |
mixdesign
|
18년 전 | 3576 | |
| 1203 | 18년 전 | 3087 | ||
| 1202 | 18년 전 | 2967 | ||
| 1201 | 18년 전 | 2027 | ||
| 1200 | 18년 전 | 4120 | ||
| 1199 | 18년 전 | 2158 | ||
| 1198 | 18년 전 | 4191 | ||
| 1197 | 18년 전 | 2500 | ||
| 1196 | 18년 전 | 2348 | ||
| 1195 |
|
18년 전 | 3461 | |
| 1194 | 18년 전 | 2234 | ||
| 1193 | 18년 전 | 2142 | ||
| 1192 | 18년 전 | 3271 | ||
| 1191 | 18년 전 | 3948 | ||
| 1190 | 18년 전 | 2204 | ||
| 1189 |
|
18년 전 | 2348 | |
| 1188 |
|
18년 전 | 3823 | |
| 1187 | 18년 전 | 2704 | ||
| 1186 | 18년 전 | 3345 | ||
| 1185 | 18년 전 | 2771 | ||
| 1184 | 18년 전 | 1660 | ||
| 1183 | 18년 전 | 2119 | ||
| 1182 | 18년 전 | 3688 | ||
| 1181 |
mermaid
|
18년 전 | 2914 | |
| 1180 | 18년 전 | 2968 | ||
| 1179 | 18년 전 | 3603 | ||
| 1178 | 18년 전 | 2163 | ||
| 1177 |
|
18년 전 | 2277 | |
| 1176 | 18년 전 | 3166 | ||
| 1175 | 18년 전 | 1853 | ||
| 1174 |
|
18년 전 | 2218 | |
| 1173 |
|
18년 전 | 2522 | |
| 1172 | 18년 전 | 1763 | ||
| 1171 | 18년 전 | 2101 | ||
| 1170 | 18년 전 | 1987 | ||
| 1169 | 18년 전 | 2502 | ||
| 1168 | 18년 전 | 1920 | ||
| 1167 | 18년 전 | 1715 | ||
| 1166 | 18년 전 | 1742 | ||
| 1165 | 18년 전 | 1724 | ||
| 1164 | 18년 전 | 2765 | ||
| 1163 | 18년 전 | 1552 | ||
| 1162 |
|
18년 전 | 5665 | |
| 1161 |
이걸~어쩌나~
|
18년 전 | 2392 | |
| 1160 | 18년 전 | 1659 | ||
| 1159 | 18년 전 | 4701 | ||
| 1158 | 18년 전 | 2049 | ||
| 1157 | 18년 전 | 4839 | ||
| 1156 | 18년 전 | 3186 | ||
| 1155 | 18년 전 | 2126 | ||
| 1154 | 18년 전 | 1825 | ||
| 1153 |
BEST79
|
18년 전 | 2099 | |
| 1152 | 18년 전 | 1721 | ||
| 1151 | 18년 전 | 1834 | ||
| 1150 | 18년 전 | 1833 | ||
| 1149 |
inniskun
|
18년 전 | 2475 | |
| 1148 |
|
18년 전 | 3491 | |
| 1147 |
|
18년 전 | 5971 | |
| 1146 |
|
18년 전 | 3859 | |
| 1145 | 18년 전 | 3055 | ||
| 1144 | 18년 전 | 2130 | ||
| 1143 | 18년 전 | 2398 | ||
| 1142 | 18년 전 | 2186 | ||
| 1141 |
|
18년 전 | 2297 | |
| 1140 | 18년 전 | 2404 | ||
| 1139 | 18년 전 | 2840 | ||
| 1138 | 18년 전 | 2532 | ||
| 1137 | 18년 전 | 1986 | ||
| 1136 | 18년 전 | 3125 | ||
| 1135 | 18년 전 | 3584 | ||
| 1134 | 18년 전 | 3829 | ||
| 1133 |
자반고등어
|
18년 전 | 3332 | |
| 1132 | 18년 전 | 3381 | ||
| 1131 | 18년 전 | 2561 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기