찾다
백엔드 개발PHP 튜토리얼php版相片按拍照日期归类整理源码

php版照片按拍照日期归类整理源码

  • php版照片按拍照日期归类整理源码 
  • 以年-月为目录进行归类
  • 跳过重复文件
  • 视频文件、非图片文件单独归类
  • 读不到日期的照片单独归类

<?php /*	2014/4/1 17:27 klggg 照片按拍照日期整理	依赖 php_exif 扩展	 win下打开扩展	   extension=php_exif.dll      ; 注,这段必须放在 extension=php_mbstring.dll 下面*/date_default_timezone_set(&#39;PRC&#39;);//require dirname(__FILE__).&#39;/vendor/autoload.php&#39;;$curr_dir_path = dirname(__FILE__); //要处理的照片来源路径  * 需要针对自己的情况做下修改$photo_source_path = &#39;K:/家庭照片&#39;;$config =  array(	&#39;fileExtension&#39; => array(		//图片的扩展名		'pic' => array('jpg','png','gif','bmp'),		//视频的扩展名		'movies' => array('mov','3gp','mp4')	),	'path'  => array(		//所有新目录产生的根目录,* 注意修改成自己的路径		'root' => $curr_dir_path.'/pic_new_month'		));$config['path']['pic'] = $config['path']['root'].'/pic';	//照片移到哪个目录$config['path']['movies'] = $config['path']['root'].'/movies';	//视频移到哪个目录$config['path']['unkown'] = $config['path']['root'].'/unkown';	//非照片文件移到哪个目录//初始化log相关$log_path = $config['path']['root'].'/log/';if(!is_dir($log_path))        mkdir($log_path, 0755, true); $log_file = $log_path.'/'.date('Y-m-d').'.log';$log_category = 'PhotoMove';$log =null;$log_config = array('locking' => 1,'buffering' => true, 'lineFormat' =>'%1$s %2$s [%3$s] %8$s->%7$s  %6$s  %4$s');if(!defined('PEAR_LOG_DEBUG')){	define('PEAR_LOG_EMERG',    0);     /* System is unusable */	define('PEAR_LOG_ALERT',    1);     /* Immediate action required */	define('PEAR_LOG_CRIT',     2);     /* Critical conditions */	define('PEAR_LOG_ERR',      3);     /* Error conditions */	define('PEAR_LOG_WARNING',  4);     /* Warning conditions */	define('PEAR_LOG_NOTICE',   5);     /* Normal but significant */	define('PEAR_LOG_INFO',     6);     /* Informational */	define('PEAR_LOG_DEBUG',    7);     /* Debug-level messages */	$log = DefaultLog::singleton("file" 			, $log_file,$log_category			, $log_config			,PEAR_LOG_DEBUG);}else{	$log = Log::singleton("file" 			, $log_file,$log_category			, $log_config			,PEAR_LOG_DEBUG);}$PhotoMove_obj=  new PhotoMove($config,$log);$PhotoMove_obj->run($photo_source_path);echo "done";class PhotoMove {	private $mRootPath= './tmp';	private $logger= null;	private $mConfig= Array();	public function  __construct($config,$logger) {		$this->mConfig = $config;		$this->mRootPath = $config['path']['root'];		foreach($config['path'] as $tmp_path)		{			if(!is_dir($tmp_path))				mkdir($tmp_path, 0755, true); 		}		$this->logger = $logger;	}	/**	 * 运行脚本入口	 * @param string $srcPath 照片来源目录	 *	 */	public function  run($srcPath) {		$it = new RecursiveDirectoryIterator($srcPath);		foreach (new RecursiveIteratorIterator($it, 2) as $file_path) {			if ($file_path->isDir()) 				continue;			$file_path_name = $file_path->__toString();			$this->logger->info('file_path_name: '.$file_path_name);			$file_info =	pathinfo($file_path_name);			if('thumbs.db' == strtolower($file_info['basename']))				continue;			if(!isset($file_info['extension']))			{				$this->logger->notice('no extension : '.$file_path_name);				$file_info['extension'] = '';			}			$file_info['extension'] = strtolower($file_info['extension']);			//找到图片			if(in_array($file_info['extension'],$this->mConfig['fileExtension']['pic']))			{				$tmp_timestamp = $this->getDateTimeOriginal($file_path_name);				//移到新目录				$new_dir = $this->mConfig['path']['pic'].'/'.date('Y-m',$tmp_timestamp);				if(!is_dir($new_dir))					mkdir($new_dir, 0755, true); 				$tmp_new_file_path = $new_dir.'/'.$file_info['basename'];				$this->move($file_path_name,$tmp_new_file_path);			}			else if(in_array($file_info['extension'],$this->mConfig['fileExtension']['movies']))			{				$tmp_new_file_path = $this->mConfig['path']['movies'].'/'.$file_info['basename'];				$this->move($file_path_name,$tmp_new_file_path);			}			else			{				//非图片文件处理				$this->logger->notice('not image file : '.$file_path_name);				$tmp_new_file_path = $this->mConfig['path']['unkown'].'/'.$file_info['basename'];				$this->move($file_path_name, $tmp_new_file_path);			}		}	}	/**	 * 取拍照日期	 * @param string $filePathName 照片完整路径	 * @param string $defaultDateTime 取不到拍照时间时的默认时间	 * @return  int 返回时间戳	 *	 */	public function  getDateTimeOriginal($filePathName,$defaultDateTime='1970:01:01 01:01:01') {		$exif = exif_read_data($filePathName, 0, true);		$date_time_original = $defaultDateTime;		if(empty($exif['EXIF']) || empty($exif['EXIF']['DateTimeOriginal']))		{			$this->logger->warning("empty DateTimeOriginal");		}		else			$date_time_original = $exif['EXIF']['DateTimeOriginal']; 	   //string(19) "2011:03:13 10:23:09"		$this->logger->info('DateTimeOriginal: '.$date_time_original);		$tmp_timestamp  = strtotime($date_time_original);		return $tmp_timestamp;	}	/**	 * 移动文件	 * @param string $oldFilePath 原文件完整路径	 * @param string $newFilePath 目标文件完整路径	 * @return  bool	 *	 */	public function  move($oldFilePath,$newFilePath) {		//针对已存在的文件		if(file_exists($newFilePath))		{			$this->logger->notice("file_exists ".$newFilePath);			return false;		}		$result = false;//		if($result == copy($oldFilePath, $newFilePath))		if($result == rename($oldFilePath, $newFilePath))			$this->logger->err("rename false, to  ".$newFilePath );		else			$this->logger->info('[ok] move  '.$oldFilePath.' to '.$newFilePath);		return $result;	}}class DefaultLog {    var $_formatMap = array('%{timestamp}'  => '%1$s',                            '%{ident}'      => '%2$s',                            '%{priority}'   => '%3$s',                            '%{message}'    => '%4$s',                            '%{file}'       => '%5$s',                            '%{line}'       => '%6$s',                            '%{function}'   => '%7$s',                            '%{class}'      => '%8$s',                            '%\{'           => '%%{');    var $_lineFormat = '%1$s %2$s [%3$s] %4$s';    var $_timeFormat = '%b %d %H:%M:%S';    var $_eol = "\n";    var $_dirmode = 0755;	private $_filename= './tmp';    var $_backtrace_depth = 0;	public function  __construct($name, $ident, $conf, $level='') {        $this->_filename = $name;        $this->_ident = $ident;        if (!empty($conf['lineFormat'])) {            $this->_lineFormat = str_replace(array_keys($this->_formatMap),                                             array_values($this->_formatMap),                                             $conf['lineFormat']);        }				if (!is_dir(dirname($this->_filename))) {			mkdir(dirname($this->_filename, $this->_dirmode,true));		}	}    public static function singleton($handler, $name = '', $ident = '',                                     $conf = array(), $level = PEAR_LOG_DEBUG)    {        static $instances;        if (!isset($instances)) $instances = array();        $signature = serialize(array($handler, $name, $ident, $conf, $level));        if (!isset($instances[$signature])) {			 $instances[$signature] =  new self($name, $ident, $conf, $level);        }        return $instances[$signature];    }    function log($message, $priority = null)    {		/* Extract the string representation of the message. */        $message = $this->_extractMessage($message);        /* Build the string containing the complete log line. */        $line = $this->_format($this->_lineFormat,                               strftime($this->_timeFormat),                               $priority, $message) . $this->_eol;		error_log($line, 3,$this->_filename);echo $line;    }    function emerg($message)    {        return $this->log($message, PEAR_LOG_EMERG);    }    function alert($message)    {        return $this->log($message, PEAR_LOG_ALERT);    }    function crit($message)    {        return $this->log($message, PEAR_LOG_CRIT);    }    function err($message)    {        return $this->log($message, PEAR_LOG_ERR);    }    function warning($message)    {        return $this->log($message, PEAR_LOG_WARNING);    }    function notice($message)    {        return $this->log($message, PEAR_LOG_NOTICE);    }    function info($message)    {        return $this->log($message, PEAR_LOG_INFO);    }    function debug($message)    {        return $this->log($message, PEAR_LOG_DEBUG);    }    function _extractMessage($message)    {        /*         * If we've been given an object, attempt to extract the message using         * a known method.  If we can't find such a method, default to the         * "human-readable" version of the object.         *         * We also use the human-readable format for arrays.         */        if (is_object($message)) {            if (method_exists($message, 'getmessage')) {                $message = $message->getMessage();            } else if (method_exists($message, 'tostring')) {                $message = $message->toString();            } else if (method_exists($message, '__tostring')) {                $message = (string)$message;            } else {                $message = var_export($message, true);            }        } else if (is_array($message)) {            if (isset($message['message'])) {                if (is_scalar($message['message'])) {                    $message = $message['message'];                } else {                    $message = var_export($message['message'], true);                }            } else {                $message = var_export($message, true);            }        } else if (is_bool($message) || $message === NULL) {            $message = var_export($message, true);        }        /* Otherwise, we assume the message is a string. */        return $message;    }    function _format($format, $timestamp, $priority, $message)    {        /*         * If the format string references any of the backtrace-driven         * variables (%5 %6,%7,%8), generate the backtrace and fetch them.         */        if (preg_match('/%[5678]/', $format)) {            /* Plus 2 to account for our internal function calls. */            $d = $this->_backtrace_depth + 2;            list($file, $line, $func, $class) = $this->_getBacktraceVars($d);        }        /*         * Build the formatted string.  We use the sprintf() function's         * "argument swapping" capability to dynamically select and position         * the variables which will ultimately appear in the log string.         */        return sprintf($format,                       $timestamp,                       $this->_ident,                       $this->priorityToString($priority),                       $message,                       isset($file) ? $file : '',                       isset($line) ? $line : '',                       isset($func) ? $func : '',                       isset($class) ? $class : '');    }    function priorityToString($priority)    {        $levels = array(            PEAR_LOG_EMERG   => 'emergency',            PEAR_LOG_ALERT   => 'alert',            PEAR_LOG_CRIT    => 'critical',            PEAR_LOG_ERR     => 'error',            PEAR_LOG_WARNING => 'warning',            PEAR_LOG_NOTICE  => 'notice',            PEAR_LOG_INFO    => 'info',            PEAR_LOG_DEBUG   => 'debug'        );        return $levels[$priority];    }    function _getBacktraceVars($depth)    {        /* Start by generating a backtrace from the current call (here). */        $bt = debug_backtrace();        /* Store some handy shortcuts to our previous frames. */        $bt0 = isset($bt[$depth]) ? $bt[$depth] : null;        $bt1 = isset($bt[$depth + 1]) ? $bt[$depth + 1] : null;        /*         * If we were ultimately invoked by the composite handler, we need to         * increase our depth one additional level to compensate.         */        $class = isset($bt1['class']) ? $bt1['class'] : null;        if ($class !== null && strcasecmp($class, 'Log_composite') == 0) {            $depth++;            $bt0 = isset($bt[$depth]) ? $bt[$depth] : null;            $bt1 = isset($bt[$depth + 1]) ? $bt[$depth + 1] : null;            $class = isset($bt1['class']) ? $bt1['class'] : null;        }        /*         * We're interested in the frame which invoked the log() function, so         * we need to walk back some number of frames into the backtrace.  The         * $depth parameter tells us where to start looking.   We go one step         * further back to find the name of the encapsulating function from         * which log() was called.         */        $file = isset($bt0) ? $bt0['file'] : null;        $line = isset($bt0) ? $bt0['line'] : 0;        $func = isset($bt1) ? $bt1['function'] : null;        /*         * However, if log() was called from one of our "shortcut" functions,         * we're going to need to go back an additional step.         */        if (in_array($func, array('emerg', 'alert', 'crit', 'err', 'warning',                                  'notice', 'info', 'debug'))) {            $bt2 = isset($bt[$depth + 2]) ? $bt[$depth + 2] : null;            $file = is_array($bt1) ? $bt1['file'] : null;            $line = is_array($bt1) ? $bt1['line'] : 0;            $func = is_array($bt2) ? $bt2['function'] : null;            $class = isset($bt2['class']) ? $bt2['class'] : null;        }        /*         * If we couldn't extract a function name (perhaps because we were         * executed from the "main" context), provide a default value.         */        if ($func === null) {            $func = '(none)';        }        /* Return a 4-tuple containing (file, line, function, class). */        return array($file, $line, $func, $class);    }	}


성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
교통량이 많은 웹 사이트를위한 PHP 성능 튜닝교통량이 많은 웹 사이트를위한 PHP 성능 튜닝May 14, 2025 am 12:13 AM

thesecrettokeepingAphp-poweredwebsiterunningsmoothlydlyUnderHeavyloadInvolvesEveralKeyStrategies : 1) ubstractOpCodeCachingWithOpCacheTecescripteExecutionTime, 2) usedatabasequeryCachingwithRedSendatabaseload, 3) LeverAgeCdnslikeCloudforforporerververforporporpin

PHP의 종속성 주입 : 초보자를위한 코드 예제PHP의 종속성 주입 : 초보자를위한 코드 예제May 14, 2025 am 12:08 AM

Code는 코드가 더 명확하고 유지 관리하기 쉽기 때문에 의존성 주입 (DI)에 관심을 가져야합니다. 1) DI는 클래스를 분리하여 더 모듈 식으로 만들고, 2) 테스트 및 코드 유연성의 편의성을 향상시키고, 3) DI 컨테이너를 사용하여 복잡한 종속성을 관리하지만 성능 영향 및 순환 종속성에주의를 기울이십시오. 4) 모범 사례는 추상 인터페이스에 의존하여 느슨한 커플 링을 달성하는 것입니다.

PHP 성능 : 응용 프로그램을 최적화 할 수 있습니까?PHP 성능 : 응용 프로그램을 최적화 할 수 있습니까?May 14, 2025 am 12:04 AM

예, PPAPPLICATIONISPOSSIBLEADESLESTION.1) INVERECINGUSINGAPCUTERODUCEDABASELOAD.2) INCODINCEDEXING, ENGICIONEQUERIES 및 CONNECTIONPOULING.3) 향상된 보드 바이어링, 플로 팅 포르코 잉을 피하는 최적화 된 APPCUTERODECEDATABASELOAD.2)

PHP 성능 최적화 : 궁극적 인 가이드PHP 성능 최적화 : 궁극적 인 가이드May 14, 2025 am 12:02 AM

theKeyStrategiesToSINCINTIFILINTINTIFILINTINTHPPORMATIONPERFORMANCEARE : 1) USEOPCODECACHING-CCHACHETEDECUTECUTINGTIME, 2) 최적화 된 ABESINSTEMENTEMENDSTEMENTEMENDSENDSTATEMENTENDS 및 PROPERINDEXING, 3) ConfigureWebSerVERSLIKENGINXXWITHPMFORBETPERMERCORMANCES, 4)

PHP 의존성 주입 컨테이너 : 빠른 시작PHP 의존성 주입 컨테이너 : 빠른 시작May 13, 2025 am 12:11 AM

aphpdectionenceindectioncontainerisatoolthatmanagesclassdependencies, 향상 Codemodularity, testability 및 maintainability.itactAsacentralHubForCreatingAndingDinjectingDingingDingingdecting.

PHP의 종속성 주입 대 서비스 로케이터PHP의 종속성 주입 대 서비스 로케이터May 13, 2025 am 12:10 AM

대규모 응용 프로그램의 경우 SELLENCIONINGESS (DI)를 선택하십시오. ServicElocator는 소규모 프로젝트 또는 프로토 타입에 적합합니다. 1) DI는 생성자 주입을 통한 코드의 테스트 가능성과 모듈성을 향상시킵니다. 2) Servicelocator는 센터 등록을 통해 서비스를 얻습니다. 이는 편리하지만 코드 커플 링이 증가 할 수 있습니다.

PHP 성능 최적화 전략.PHP 성능 최적화 전략.May 13, 2025 am 12:06 AM

phPapplicationSCanBeoptimizedForsPeedandefficiencyby : 1) ENABLEOPCACHEINPHP.INI, 2) PREPAREDSTATEMENTSWITHPDOFORDATABASEQUERIES 사용

PHP 이메일 검증 : 이메일이 올바르게 전송되도록합니다PHP 이메일 검증 : 이메일이 올바르게 전송되도록합니다May 13, 2025 am 12:06 AM

phpeMailValidationInvoLvestHreesteps : 1) formatValidationUsingRegularexpressionsTochemailformat; 2) dnsValidationToErethedomainHasaValidMxRecord; 3) smtpvalidation, theSTHOROUGHMETHOD, theCheckSiftheCefTHECCECKSOCCONNECTERTETETETETETETWERTETWERTETWER

See all articles

핫 AI 도구

Undresser.AI Undress

Undresser.AI Undress

사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover

AI Clothes Remover

사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool

Undress AI Tool

무료로 이미지를 벗다

Clothoff.io

Clothoff.io

AI 옷 제거제

Video Face Swap

Video Face Swap

완전히 무료인 AI 얼굴 교환 도구를 사용하여 모든 비디오의 얼굴을 쉽게 바꾸세요!

뜨거운 도구

안전한 시험 브라우저

안전한 시험 브라우저

안전한 시험 브라우저는 온라인 시험을 안전하게 치르기 위한 보안 브라우저 환경입니다. 이 소프트웨어는 모든 컴퓨터를 안전한 워크스테이션으로 바꿔줍니다. 이는 모든 유틸리티에 대한 액세스를 제어하고 학생들이 승인되지 않은 리소스를 사용하는 것을 방지합니다.

ZendStudio 13.5.1 맥

ZendStudio 13.5.1 맥

강력한 PHP 통합 개발 환경

스튜디오 13.0.1 보내기

스튜디오 13.0.1 보내기

강력한 PHP 통합 개발 환경

SublimeText3 중국어 버전

SublimeText3 중국어 버전

중국어 버전, 사용하기 매우 쉽습니다.

DVWA

DVWA

DVWA(Damn Vulnerable Web App)는 매우 취약한 PHP/MySQL 웹 애플리케이션입니다. 주요 목표는 보안 전문가가 법적 환경에서 자신의 기술과 도구를 테스트하고, 웹 개발자가 웹 응용 프로그램 보안 프로세스를 더 잘 이해할 수 있도록 돕고, 교사/학생이 교실 환경 웹 응용 프로그램에서 가르치고 배울 수 있도록 돕는 것입니다. 보안. DVWA의 목표는 다양한 난이도의 간단하고 간단한 인터페이스를 통해 가장 일반적인 웹 취약점 중 일부를 연습하는 것입니다. 이 소프트웨어는