|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2007-12-23 23:26 UTC] jz at apfeldot dot de
Description: ------------ The return value of unlink isn't int, it's bool. Expected result: ---------------- bool :-) Actual result: -------------- int :-) PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Thu Jan 08 17:00:01 2026 UTC |
Confirmed: <?php fopen('f','w'); $v=unlink('f'); echo gettype($v); // boolean ?>