I have problem when create new folder or upload new file in php with arabic language in windows server 2012 R2 but it work correctly in windows client (7,8)
This is the code
<?php
$new_path1="Archiving/صادر";
//when use this both lines folder create like image below
//$new_path=iconv('UTF-8', 'ISO-8859-6', $new_path1);
$new_path = iconv('UTF-8', 'windows-1256', $new_path1);
mkdir($new_path, 0700);
?>