유목민의 삶..
php 오류 체크 함수
긴자손
2018. 6. 29. 13:51
728x90
반응형
if (!function_exists('cr_pr')) {
function cr_pr($data, $ex=true)
{
echo "<pre>";
print_r($data);
echo "</pre>";
if($ex == true) exit;
}
}
if (!function_exists('dd')) {
function dd($data, $ex=true)
{
echo "<pre>";
print_r($data);
echo "</pre>";
if($ex == true) exit;
}
}
728x90
반응형