Changes between Version 1 and Version 2 of Ticket #18776, comment 11
- Timestamp:
- Aug 16, 2019 8:08:19 AM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18776, comment 11
v1 v2 30 30 I don't know if unlink() here is the real OS primitie or some PHP thingy ontop of it, I am not a PHP programmer, but it would certiainly be of help 31 31 to know about the real error code returned for the failing unlink(2) systemcall. 32 33 public function unlink($path) which calls that should emit 34 an error message presumably telling us that: 35 36 {{{ 37 if (!$unlinked) { 38 $error = error_get_last(); 39 $message = 'Could not delete '.$path.': ' . @$error['message']; 40 }}} 41 42 Do we have those error messages somewhere? I cannot see any mentioning of such in this bug report.