Edit report at https://bugs.php.net/bug.php?id=64882&edit=1

 ID:                 64882
 Comment by:         weirdan at gmail dot com
 Reported by:        weirdan at gmail dot com
 Summary:            'Could not open input file' error message goes to
                     STDOUT
 Status:             Open
 Type:               Bug
 Package:            CGI/CLI related
 Operating System:   Debian GNU/Linux
 PHP Version:        5.4.15
 Block user comment: N
 Private report:     N

 New Comment:

Those folders contain vanilla PHP code, with NO Debian patches applied.


Previous Comments:
------------------------------------------------------------------------
[2013-05-20 14:08:21] weirdan at gmail dot com

Description:
------------
Error messages in CLI should go to STDERR. This was the case with 5.3.x, but it 
doesn't seem to be the case with 5.4.*

Test script:
---------------
#!/bin/bash
for dir in `ls -d php-5*|grep -v tar`; do 
   echo -n "$dir: ";
   # the following line should output nothing 
   $dir/sapi/cli/php -n $(tempfile).php 2>/dev/null; 
   echo; 
done 


Expected result:
----------------
php-5.3.25: 
php-5.4.0:
php-5.4.15:
php-5.4.7:

Actual result:
--------------
php-5.3.25: 
php-5.4.0: Could not open input file: /tmp/filelm8WcG.php

php-5.4.15: Could not open input file: /tmp/filehmMkOG.php

php-5.4.7: Could not open input file: /tmp/fileSfJZ4E.php



------------------------------------------------------------------------



-- 
Edit this bug report at https://bugs.php.net/bug.php?id=64882&edit=1

Reply via email to