Skip to content

Instantly share code, notes, and snippets.

@mgng
Created August 29, 2013 02:47
Show Gist options
  • Save mgng/6373735 to your computer and use it in GitHub Desktop.
Save mgng/6373735 to your computer and use it in GitHub Desktop.
basename で 文字化け
<?php
$path = '/path/to/漢字.txt';
var_dump(
basename( $path ),
end( explode( '/', $path ) )
);
/*
string(9) "��字.txt"
string(10) "漢字.txt"
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment