본문 바로가기

php12

이미지 리사이징 재귀함수 스마트폰등에서 이미지첨부할경우 이미지해상도가 너무커서적정한 사이즈로 변경하는 재귀함수. 나중에 찾아보기 편하도록 기록으로 남김. ===============================================================if($_GET['mode'] == 'resize'){echo "이미지 리사이징";function _resize($_file,$_depth=0){$_name = basename($_file);$_dir = dirname($_file);$_indent = ($_depth +1)*20;$_info = _get_file_info($_file);$_org = $_dir."/src_".$_name;echo "파일 : [{$_info['type']}/{$_info['size_t.. 2014. 1. 17.
php 로 동적이미지 생성하기(gd이용) php로 메뉴명등을 이미지로 동적으로 생성할수 있음.자주 바뀌거나 하는 메뉴명등 생성할때 유용함. 1. https://github.com/kijin/imgtext : 아주강력함, 캐싱됨2. 간단한버전 -> 바로 화면에 뿌려줌(아래소스 . 폰트파일필요) =====================================================imgtext 라이브러리. include_once "imgtext.php"; $imgtext = new IMGText;$imgtext->cache_url_prefix = './img/cache';$imgtext->cache_local_dir = dirname(__FILE__)."/img/cache";$imgtext->font_dir = dirname(__FILE_.. 2014. 1. 17.
jquery select2 셀렉트박스의 좋은확장. 셀렉트박스를 파워풀하게 만들어줄 jquery 확장 http://ivaynberg.github.io/select2/ 사용법도 간단합니다. 요건 회원수가 많아져서 ajax 방식으로 바꾼 캡쳐화면임.. 기본적으로 jquery 가 필요select2.js / select2.css 도 인클루드 해야합니다. + 기본적인사용html1번유저2번유저3번유저 스크립트부분---------------------------------$("#user_list").select2({placeholder: "유저를 선택하세요",allowClear: true});--------------------------------------- + 확장사용 : ajax / array / json 등 사용가능 셀렉트박스내부모양을 html로 꾸밀수있음 .. 2013. 9. 3.
Oracle 페이징,리스팅,인덱스 게시판 페이징.. : -> rownum $cfg->postnum=10; $page = 1; SELECT cn_num, cn_kind, cn_title,cn_contents, cn_cnt,to_char(cn_inputdate,'yyyy/mm/dd'), cn_use FROM (SELECT /*+index_desc(cn_announce_cn_num_pk)*/ rownum as rnum, cn_num, cn_kind, cn_title,cn_contents, cn_cnt,cn_inputdate, cn_use FROM (SELECT cn_num, cn_kind, cn_title,cn_contents, cn_cnt,cn_inputdate, cn_use FROM cs_announce ORDER BY cn_num des.. 2007. 10. 22.
Snoopy 소켓 클래스 라이브러리 http://sourceforge.net/projects/snoopy/ 소켓함수를 사용한다거나...외부링크를 가져오거나.. 외부로 폼을 전송시킬때 유용할듯. 소스포지의 설명 Snoopy is a PHP class that simulates a web browser. it automates the task of retrieving web page content and posting forms 라..ㅎㅎ 참고해서 볼만한 포스팅 http://toyobi.net/web/59 http://njey.goanygate.com/tt/113 -README EXAMPLES: Example: fetch a web page and display the return headers and the contents of the pa.. 2007. 9. 20.