|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-04-01 16:07 UTC] derick@php.net
[2002-04-16 18:22 UTC] wez@php.net
[2002-05-10 15:55 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 19 19:00:01 2025 UTC |
<?php ini_set('allow_url_fopen',false); if (!fopen('php://stderr','w')) echo "No\n"; ini_set('allow_url_fopen',true); if (fopen('php://stderr','w')) echo "Yes\n"; ?> Ouput: Warning: fopen("php://stderr", "w") - No existe el fichero o el directorio in /root/temp/basura/fopen.php on line 3 No Yes -- Tomas V.V.Cox