Web 썸네일형 리스트형 timer class http://www.dailycoding.com/posts/object_oriented_programming_with_javascript__timer_class.aspx 더보기 js minifier https://javascript-minifier.com/ http://jscompress.com/ 더보기 window.postMessage http://mvcp.tistory.com/514 더보기 android string xml to html table stirng.xml 을 한번에 비교하기 위해서 만듬 더보기 base36 function dec2string ($decimal, $base) { global $error; $string = null; $base = (int)$base; if ($base 36 | $base == 10) { echo 'BASE must be in the range 2-9 or 11-36'; exit; } // if; $charset = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ'; $charset = substr($charset, 0, $base); if (!ereg('(^[0-9]{1,16}$)', trim($decimal))) { $error['dec_input'] = 'V.. 더보기 url auto link url 이 깨지는 것 같아서 손봄.. [code] eregi_replace("(http|https|ftp|ftps|telent|news)://([a-z0-9-]+.[][a-zA-Z0-9:&#@=_~%;?/.+-]+)", " \\1://\\2", $content); [/code] 더보기 flickr client 시간이 여유가 되어 찍어논 사진이나 여기 홈피에 올려보도록 하자라는 생각에 open api 를 사용하고 있는 플리커를 선택... 관련 api는 이곳에서 확인할 수 있고 http://www.flickr.com/services/api/ 그 중 클라이언트를 새로 만들 순 있지만 일이 아닌 취미로 하는 짓이라 만들어져 있는 소스를 이용하기로 생각 http://phpflickr.com/ 다음에 소스를 다운 받아서 설치하였다. oauth를 이용하기 위해서 consumer_key 와 consumer_secret 값을 받아야 되는 데 이건 로그인 후에 http://www.flickr.com/services/api/auth.howto.web.html 이곳을 확인 하면 된다.. 해당 페이지에 존재하는 키를 받는 페이지인 .. 더보기 des3 //// 기본 키 값//$key = "YourTripleDesKeyValues00"; // 24 bit Key$iv = "initalvt"; // 8 bit IV$input = "Text to encrypt"; // text to encrypt$bit_check = 8; // bit amount for diff algor.//// 테스트//$str = encrypt($input,$key,$iv,$bit_check);echo "Start: $input";echo "Encrypted: $str ";echo "Decrypted.. 더보기 EXIF $EXIF = exif_read_data($view_one, 'EXIF', false);?>echo 'Make : '.$EXIF['Make'].'';echo 'Model : '.$EXIF['Model'].'';echo 'Software : '.$EXIF['Software'].'';echo 'DateTime : '.$EXIF['DateTime'].'';echo 'Exposure Time : '.$EXIF['ExposureTime'].' sec';echo 'ISO : '.$EXIF['ISOSpeedRatings'].'';echo 'Flash : '; echo $EXIF['Flash']==0?'None':$EXIF['Flash']; echo '';$v = explode('/', $EXIF['FocalLengt.. 더보기 class.Upload3.php // 예제 더보기 이전 1 2 3 4 ··· 41 다음