PHP Unlink Not working

前端 未结 7 1559
小鲜肉
小鲜肉 2021-01-11 15:34

I am trying to delete photo in php using unlink. I have used it earlier on other server but this time it is not working. I have used absolute path for a test but still does

7条回答
  •  粉色の甜心
    2021-01-11 16:09

    unlink($fileName); failed for me.
    Then I tried using the realpath($fileName) function as unlink(realpath($fileName)); it worked.

    Just posting it, in case if any one finds it useful.

    php unlink

提交回复
热议问题