require_once './library/FirePHP.class.php';
$firephp = FirePHP::getInstance(true);
$firephp->log($variable);
FirePHP 사용법.
2010. 7. 19.
post raw data
file_get_contents("php://input");
POST 방식으로 보낸 http 패킷의 body에 접근할 수 있다.
일반적으로 PHP에서는 form방식 전송을 이용하는 경우가 대부분이지만
body에 JSON으로 만든 raw data를 넣어서 보내는 경우에 서버단에서 접근하려면
위와 같은 명령어를 이용해야 한다.
라벨:
Body,
data,
file_get_contents,
HTTP,
php,
php://input,
post,
RAW,
Server-Side
etc/passwd
abc:x:600:600::/home/abc:/bin/bash
abc : 사용자 계정
x: 비번
/home/abc : 로그인시 홈 디렉토리
---------------------------------------------------
chown abc /usr/local/apache/htdocs (-R)
abc 사용자에게 해당 디렉토리의 권한을 준다.
-R 옵션을 쓰면 하위 디렉토리까지 일괄적으로 권한을 준다.
2010. 7. 1.
PHP 이미지 crop
<iframe name="cropFrame" width="60" height="50" scrolling="no" style="display:none;"></iframe>
<form action="crop.php" method="post" target="cropFrame">
<input id="imageSrc" type="hidden" name="imageSrc" value="" />
<input id="x" type="hidden" name="x" value="0" />
<input id="y" type="hidden" name="y" value="0" />
<input id="w" type="hidden" name="w" value="450" />
<input id="h" type="hidden" name="h" value="200" />
<input type="submit" value="crop" />
</form>
----------------------------------------------------------------------
<?php
require_once './FirePHPCore/FirePHP.class.php';
$firephp = FirePHP::getInstance(true);
//$firephp->log($_POST['imageSrc']);
$imageSrc = $_POST['imageSrc'];
$x = $_POST['x'];
$y = $_POST['y'];
$w = $_POST['w']; // 높이
$h = $_POST['h']; // 길이
$target_w = 450;
$target_h = 200;
$jpeg_quality = 90;
$src = substr($imageSrc, 2);
$img_r = imagecreatefromjpeg($src);
$dst_r = ImageCreateTrueColor($w, $h);
imagecopyresampled(
$dst_r,
$img_r,
0, 0, $x, $y,
$target_w, $target_h, $w, $h
);
$output_filename = './pic/test.jpg';
header('Content-type: image/jpeg');
imagejpeg($dst_r, $output_filename, $jpeg_quality);
?>
imagecreatefromjpeg($src);
- 해당 경로의 파일을 jpeg 이미지로 생성함
ImageCreateTrueColor($w, $h);
- 파라미터로 받은 넓이와 높이의 크기만한 검정색 이미지를 생성함
imagecopyresampled(
$dst_r, // 타겟 이미지
$img_r, // 복사할 이미지
0, // 타겟 이미지의 x좌표
0, // 타겟 이미지의 y좌표
$x, // 원본 이미지의 x좌표
$y, // 원본 이미지의 y좌표
$target_w, // 타겟 이미지의 넓이
$target_h, // 타겟 이미지의 높이
$w, // 원본 이미지의 넓이
$h // 원본 이미지의 높이
);
- 이미지의 크기를 변경해서 복사함
- 이미지의 x, y 좌표는 좌상단 모서리에서 시작함
PHP 파일업로드
<iframe name="uploadFrame" width="60" height="50" scrolling="no" style="display:none;"></iframe>
<form action="upload.php" method="post" enctype="multipart/form-data" target="uploadFrame"/>
<input type="hidden" name="MAX_FILE_SIZE" value="1000000" />
<label for="userfile">Upload a file:</label>
<input type="file" name="userfile" id="userfile" />
<input type="submit" value="Send File" />
</form>
---------------------------------------------------------------------
file_exists($filepath);
- 파일경로를 파라미터로 넘겨주고 존재 여부를 Boolean으로 받음
move_uploaded_file($_FILES['userfile']['tmp_name'], $path);
- 파일을 해당 경로에 업로드함
?>
라벨:
업로더,
파일업로드,
HTML,
php,
Server-Side
웹폼디자인
이미지출처 : insightbook.springnote.com
앞으로 다른 UX에 관한 책들도 많이 읽어봐야겠다. 요즘엔 개발자도 디자이너도 UX를 고려해야 한다고 생각하는 사람으로 매우 추천할 만 하다.
피드 구독하기:
글 (Atom)