출력 버퍼링 출력 버퍼링 ob_start() // 출력 버퍼링을 활성화, ob_end_flush()가 호출되거나 페이지요청이 끝날때 내용을 보낸다. ob_end_flush() // 버퍼링 출력 ob_get_contents() // 버퍼내용을 문자열 변수로 복사할 수 있다. ob_gzhandler() // 웹 페이지 압축을 지원하는 웹 브라우저에 gz-인코드 데이터를 브라우저가 허용하는 내용 인코딩 형태를 확인하고 그에 따라 출력한다. pe/standard 2006.09.22
HEADER void header ( string string [, bool replace [, int http_response_code]]) header()은 raw HTTP 헤더를 전송하기 위해 사용한다. HTTP 헤더에 관한 자세한 정보는 HTTP/1.1 규격을 할것!!. file저장시 헤더구분 header("Content-type: text/plain"); // text header("Content-type: text/html"); // html header("Content-type: application/vnd.ms-powerpoint"); // ppt header("Content-type: application/msword"); // doc header("Content-type: application/vn.. pe/standard 2006.09.22
timestamp echo mktime() - $timestmpValue; // timestamp 시간으로 1일 값 86400, 2일 값 172800 pe/standard 2006.09.22