프로그램/php
-
[php]addDate 함수프로그램/php 2013. 7. 21. 17:58
function addDate($days, $dateStr = '') { if ($dateStr == '') { // 현재날짜에 넘겨진 인자만큼 더한다. return date("Y-m-d", mktime(0, 0, 0, date("m"), date("d") + $days, date("Y"))); } else { $a = explode('-', $dateStr); //년,월,일 구별 // $dateStr에 념겨진 인자만큼 더한다. return date('Y-m-d', mktime(0, 0, 0, $a[1], $a[2] + $days, $a[0])); } } addDate(0,$keyword)
-
[php]json, json_encode프로그램/php 2013. 7. 21. 17:47
$result = json_encode($arr); $result = '[{"listCount":' . $countRs[0]['COUNT(R.rf_idx)'] . '}]'; 예제) function getAddr($str){ // 파일에서 부르기 $zipfile = file("include/zipcode/zip.db"); $total = 0; $ret = ""; if ($str) { while ($zipcode = each($zipfile)) { if(strstr(substr($zipcode[1],8,512), $str)) { $addr = explode(" ", substr($zipcode[1],8)); $zip1 = substr($zipcode[1],0,3); $zip2 = substr($zipcode..
-
[php]캐쉬관련 (no-cache)프로그램/php 2013. 7. 21. 17:29
response.expires= -1 response.AddHeader "Pragma","no-cache" response.AddHeader "cache-control","no-cache, must-revalidate" ---------------------------------------------------------------------------- header("Pragma: no-cache"); header("Cache-Control: no-cache, must-revalidate");
-
[php]파일업로드 부분 is_uploaded_file,upload프로그램/php 2013. 7. 21. 17:20
파일 업로드 부분 //업로드한 파일을 저장할 디렉토리 $save_dir = "./refund_files/"; //확장자 추출 $filename = $_FILES["refundFile"]["name"]; $path = pathinfo($filename); //파일에 대한 정보를 얻음 $ext = strtolower($path['extension']); //확장자를 연관배열에서 가져옴, 소문자 변환 echo $ext; exit(); //파일이 HTTP POST 방식을 통해 정상적으로 업로드되었는지 확인한다. if(is_uploaded_file($_FILES["refundFile"]["tmp_name"])) { //echo "업로드한 파일명 : ".$_FILES["refundFile"]["name"] ." "..