Error :
$docx->createDocx($filenamewithaccent);
Error : Error while trying to write to X:\Path\File with accent - (éç).docx please check write access.
Solution :
$docx->createDocx(iconv('UTF-8', 'ASCII//TRANSLIT//IGNORE', $filenamewithaccent));
Is there an other solution ?