Skip to content

Instantly share code, notes, and snippets.

@hiroy
Created June 28, 2012 03:42
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hiroy/3008819 to your computer and use it in GitHub Desktop.
Save hiroy/3008819 to your computer and use it in GitHub Desktop.
MacからのファイルアップロードでNFDで正規化された日本語ファイル名をNFCでの正規化にnormalizeするサンプル
<?php
$name = $_FILES['inputname']['name'];
if (Normalizer::isNormalized($name, Normalizer::FORM_D)) {
$_FILES['inputname']['name'] = Normalizer::normalize($name, Normalizer::FORM_C);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment