문제

Is there any downside to using unlink() to delete a folder (and its contents) in php?

도움이 되었습니까?

해결책

You can't. unlink can only delete files, not directories. You can delete directories with rmdir, but that will only delete empty directories. You will have to unlink individual files first.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top