|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-01-20 14:31 UTC] tony2001@php.net
[2006-01-20 14:32 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 16:00:01 2025 UTC |
Description: ------------ copy, chmod , fopen will not work ! Reproduce code: --------------- <?php $filename='/filet/possu.txt'; if (is_writable($filename) && is_readable($filename) && is_executable($filename) ) { echo 'kirjoitus,luku ja suoritus'; $fp=fopen("$filename","w"); fwrite($fp,"paskajuttu"); fclose($fp); } else { echo 'ei voi kirjoittaa'; } ?> Expected result: ---------------- kirjoitus,luku ja suoritus Warning: fopen(/filet/possu.txt) [function.fopen]: failed to open stream: Permission denied in /var/www/html/aja.php on line 5 Warning: fwrite(): supplied argument is not a valid stream resource in /var/www/html/aja.php on line 6 Warning: fclose(): supplied argument is not a valid stream resource in /var/www/html/aja.php on line 7