주요사이트들의 링크인기도 를 가져와서 보여주기
// 구글 카운트 가져오기function get_googlecount($url,$urlfull){ if($fp=@fopen($urlfull, "r")){ while($googlecount=@fgets($fp,300)){ $start=@strpos($googlecount,"http://".$url."에 링크된 약 "); if($start>1){ $stop=@strpos($googlecount,"개 결과 중 "); $googlecount=@substr($googlecount,$start+44+strlen($url),$stop-$start-(44+strlen($url))); return str_replace(",","",$googlecount)..
2014. 4. 13.
PHP를 이용한 이미지 사이즈 편집마스터
$file_dir="/home/image/img.jpg";//원본이미지주소 $im1 = imagecreatetruecolor($width, $height);//목적이미지 $im2 = @imagecreatefromjpeg($file_dir); $img_size = getimagesize($file_dir); // 인자설명: 목적이미지, 원본이미지, 목적이미지시작점X좌표, 목적이미지시작점Y좌표, 원본이미지시작점X좌표, 원본이미지시작점Y좌표, 목적이미지가로, 목적이미지높이, 원본이미지가로, 원본이미지높이 imagecopyresampled($im1 , $im2, 0, 0, 0, 0, $width, $height, $img_size[0], $img_size[1]); header('Content-type: imag..
2014. 4. 13.
Copyright ⓒ SmartWeb All rights reserved.