ファイルエンコーディングをバッチまたは個別に変換します
リリース: 2016-07-25 08:48:46
ファイル エンコーディングを変換します (元の gbk から utf-8 など)。単一のファイルまたはファイルのディレクトリ全体 (オプションで再帰ディレクトリ) を変換できます。 一部の問題は再現できません。たとえば、gbk を utf8 に変換すると、文字化けが発生します。最初は変換前にエンコードを検出しようとしましたが、失敗したようです。具体的にファイルを試してみて、それが gbk であるか utf-8 であるかを確認したところ、どちらも true を返しました。これはわかりません。
- /**
- * ファイルエンコーディングを変換します
- * 依存する拡張ファイルシステムとmbstring
- * @example
- *
- * include_once 'ConvertEncode.php';
- * $convert = new ConvertEncode();
- * try{
- * $convert - >setPath('my', true, true);//ディレクトリ
- * //$convert->setPath('my.php');//単一ファイル
- * $convert->setEncode('GBK ' , 'UTF-8');
- * $convert->convert();
- * }catch(ConvertException $e) {
- * echo $e->getMessage();
- * }
- * pre> ;
- */
- class ConvertEncode {
-
- /**
- * 変換されるエンコーディング
- * @var string
- */
- private $_to_encoding;
-
- /**
- * 変換前のエンコーディング
- * @var 文字列
- */
- private $_from_encoding ;
-
- /**
- * 変換されるディレクトリまたは単一ファイル
- * @var 文字列
- */
- private $_path;
-
- /**
- * ディレクトリであるかどうかに関係なく、指定されたディレクトリが次の場合にのみ設定されます
- * @var boolean
- */
- private $_directory;
-
- /**
- * 再帰的に走査するかどうか、ディレクトリに対してのみ有効です
- * @var boolean
- */
- private $_recursion;
-
- /* *
- * 変換するすべてのファイルを保存します。ディレクトリ内のファイルを変換する場合にのみ使用されます
- * @var array
- */
- private $_files = array();
-
- /**
- *コンストラクター
- */
- public function __construct() {
- if( ! function_exists('mb_convert_encoding') ) {
- throw new ConvertException(' mbstring 拡張子が必要です');
- }
- }
-
- /**
- * 変換する必要があるディレクトリまたは単一ファイルを設定します
- * @param string $path ディレクトリまたはファイル
- * @param boolean ディレクトリかどうか
- * @param boolean 再帰ディレクトリかどうか
- * @return boolean
- */
- public function setPath($path, $is_dir = false, $rec = false) {
- $this->_path = $path ;
- $this->_directory = $is_dir;
- $this->_recursion = $rec;
- return true;
- }
-
- /**
- * 変換前のエンコードと変換後のエンコードを設定します
- * @param string $encode 変換前のエンコード
- * @param string $encode 変換後のエンコード
- * @return boolean
- */
- public function setEncode($encode_from, $encode_to) {
- $this->_from_encoding = $encode_from;
- $this->_to_encoding = $encode_to;
- return true;
- }
-
- /**
- * エンコーディングを変換、ディレクトリ設定かどうかに応じて個別に変換します
- * @return boolean
- */
- public function Convert() {
- if($ this->_directory ) {
- return $this->_convertDirectory();
- }
- return $this->_convertFile();
- }
-
- /**
- * ファイルを変換します
- * @throws ConvertException
- * @return boolean
- */
- private function _convertFile() {
- if( ! file_exists($this->_path) ) {
- $message = $this->_path . ' は存在しません。';
- throw new ConvertException($message);
- }
- if( ! is_file($this->_path) ) {
- $message = $this->_path . ' はファイルではありません。';
- throw new ConvertException($message);
- }
- if( ! $this->_isWR() ) {
- $message = $this->_path . ' は読み取りと書き込みができる必要があります。';
- throw new ConvertException($message);
- }
- $file_real_path = realpath($this->_path);
- $file_content_from = file_get_contents( $file_real_path );
- if( mb_check_encoding( $file_content_from, $this->from_encoding) ) {
- $file_content_to = mb_convert_encoding( $file_content_from, $this->to_encoding, $this->_from_encoding );
- file_put_contents( $file_real_path, $file_content_to );
- }
- return true;
-
- }
-
- /**
- * ディレクトリを変換します
- * @throws ConvertException
- * @return boolean
- */
- プライベート関数 _convertDirectory() {
- if( ! file_exists($this->_path) ) {
- $message = $this->_path . ' は存在しません。';
- throw new ConvertException($message);
- }
- if( ! is_dir($this->_path) ) {
- $message = $this->_path . ' はディレクトリではありません。';
- throw new ConvertException($message);
- }
- if( ! $this->_isWR() ) {
- $message = $this->_path . ' 読み取りと書き込みができる必要があります。';
- throw new ConvertException($message);
- }
- $this->_scanDirFiles();
- if( empty($this->_files) ) {
- $message = $ this->_path 。 ' は空のディレクトリです。';
- throw new ConvertException($message);
- }
- foreach( $this->_files as $value ) {
- $file_content_from = file_get_contents( $value );
- if( mb_check_encoding($file_content_from) , $this->_from_encoding) ) {
- $file_content_to = mb_convert_encoding( $file_content_from, $this->_to_encoding, $this->_from_encoding );
- file_put_contents( $value, $file_content_to );
- }
- }
- return本当です;
- }
-
- /**
- * ファイルまたはディレクトリが読み取り可能および書き込み可能かどうかを判断します
- * @return boolean は、読み取りおよび書き込みができる場合は true を返し、そうでない場合は false を返します
- */
- プライベート関数 _isWR() {
- if( is_readable($this->_path) && is_writable($this->_path) ) {
- return true;
- }
- return false ;
- }
-
- /**
- * ディレクトリを走査し、すべてのファイルと絶対パスを検索します
- * @return boolean
- */
- プライベート関数 _scanDirFiles($dir = '') {
- $base_path = empty( $dir ) ? realpath($this->_path) 。 DIRECTORY_SEPARATOR : realpath($dir) 。 DIRECTORY_SEPARATOR;
- $files_tmp = empty( $dir ) ? scandir($this->_path) : scandir($dir);
- foreach( $files_tmp as $value ) {
- if( $value == '.' || $value == '..' || ( strpos ($value, '.') === 0 ) ) {
- continue;
- }
- $value = $base_path 。 $value;
- if( is_dir($value) ) {
- if( $this->gt;_recursion ) {
- $this->gt;_scanDirFiles($value);
- }
- }
- elseif( is_file($value) ) {
- $this->_files[] = $value;
- }
- }
- return true;
- }
- }
-
- /**
- *変換例外
- *
- */
- class ConvertException extends Exception {
-
- }
复制代
|
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31