Search code examples
phpunlink

unlink php error with & in file name


I can't unlink file with php if there is & in file name.

unlink('../mydoc/in&out.pdf');

The error said: no such file or directory


Solution

  • You should escape special characters.

     unlink('../mydoc/in\&out.pdf');