목록프로그래밍 (4)
내블로그
모바일 브라우저 체크(PHP, JavaScript)
#PHP $isMobile = 0; if (preg_match("/Android|BlackBerry|iPhone|iPad|iPod|Opera Mini|IEMobile/i", $_SERVER['HTTP_USER_AGENT'])) { $isMobile = 1; } #JavaScript var isMobile = { Android: function() { return navigator.userAgent.match(/Android/i); }, BlackBerry: function() { return navigator.userAgent.match(/BlackBerry/i); }, iOS: function() { return navigator.userAgent.match(/iPhone|iPad|iPod/i); },..
프로그래밍/PHP
2020. 3. 9. 13:43
파일 수정시간
use File::stat; $timestamp = stat(파일명)->mtime;
프로그래밍/Perl
2019. 10. 8. 10:53
Timer
#!/usr/bin/perluse strict;use warnings;use Time::HiRes qw(ITIMER_REAL setitimer); $SIG{ALRM} = sub {};setitimer(ITIMER_REAL, 0.1, 3);while (1) { sleep ; print time()." : Main Loop\n";}
프로그래밍/Perl
2017. 4. 12. 13:49
perl MCPAN
perl -MCPAN -e 'command'
프로그래밍/Perl
2012. 2. 28. 14:27