<?php
$string = "abc(123)";
preg_match_all("/\(.*?\)/", $string, $matches);
echo $matches[0][0];
?>
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
window.opener.parent.location.reload();
window.opener.document.location.reload();

'javascript, jquery' 카테고리의 다른 글

Github - slider kit  (0) 2015.03.24
딜레이(delay) 함수  (0) 2015.02.13
문자열 마지막 문자 제거  (0) 2015.01.11
print_r 함수  (0) 2015.01.11
위지윅 에디터 : tinymce  (0) 2014.12.03
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
<style>
html,body {
	height: 100%;
	overflow: hidden;
}
</style>
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
<?php
$filepath = 'test.xls';
$filepath = preg_replace('/^.+[\\\\\\/]/', '', $filepath);

// 파일 경로에 "." 또는 ".."을 이용한 보안취약점 제거
$filesize = filesize($filepath);
$path_parts = pathinfo($filepath);
$filename = $path_parts['basename'];
$extension = $path_parts['extension'];
 
header("Pragma: public");
header("Expires: 0");
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment; filename=\"$filename\"");
header("Content-Transfer-Encoding: binary");
header("Content-Length: $filesize");
 
ob_clean();
flush();
readfile($filepath);
?>
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
<?php
$ipCheck = false;
$compareIp = array();

$remote = $_SERVER[REMOTE_ADDR];
$remoteIp = explode(".", $remote);

$result = array('1.1.1.*','2.2.2.2');

foreach($result as $key) {
    $ip = explode(".", $key);
    if($key == "*" || $key == $remote) {
        $ipCheck = true;
        break;
	}

	for($i = 0;$i < count($ip);$i++) {
		if($ip[$i] != $remoteIp[$i] && $ip[$i] != "*") {
			continue;
		} else {
			$compareIp[$i] = true;
		}
	}

	if(@$compareIp[0] && @$compareIp[1] && @$compareIp[2] && @$compareIp[3]) {
		$ipCheck = true;
		break;  
	}
}

if($ipCheck != true) {
	echo "접속제한 IP입니다.";
	exit;
}
?>
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
public class test {

	public static void main(String[] args) {
		int num = 12345;
		int sum = 0;

		sum = sum + (num / 10000);
		num = num - ((num / 10000) * 10000);

		sum = sum + (num / 1000);
		num = num - ((num / 1000) * 1000);
  
		sum = sum + (num / 100);
		num = num - ((num / 100) * 100);  
  
		sum = sum + (num / 10);
		num = num - ((num / 10) * 10);
  
		sum += num;

		System.out.println("sum = " + sum);

	}

}

'java, jsp, spring, egov' 카테고리의 다른 글

jsp 파일 다운로드  (0) 2016.02.04
모바일 접속 구별  (0) 2015.03.31
프롬프트(scan) 입력받기  (0) 2015.01.10
기본 메인 메서드  (0) 2015.01.10
page utf-8 디렉티브  (0) 2014.09.27
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,