Date: 08/31/01
- Next message: derick <email protected>: "[PHP-DEV] Bug #10694 Updated: mktime leap year bug"
- Previous message: jeroen <email protected>: "[PHP-DEV] Bug #13073 Updated: empty() returns wrong value"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
From: cynic <email protected>
Operating system: NT 5 SP 1
PHP version: 4.0CVS-2001-08-31
PHP Bug Type: Scripting Engine problem
Bug description: can't pipe into php script
cvs up -r PHP_4_0_7 on both machines done around 17:30 GMT.
on NT5 (standard cmd shell), attempt to pipe into the PHP
script fails, on FreeBSD it works fine. I'd love to blame
it on the stupid shell, but hey, I need this feature. :)
on the NT5 box, the phpx suffix has the following handler
for the "Run" action: c:\usr\local\bin\php.exe -q %1 %*
c:\temp> echo "foo bar baz" | test.phpx
The process tried to write to a nonexistent pipe.
^C
c:\temp> cat test.phpx
<?
$in = fopen('php://stdin', 'r');
while(!feof($in)){
echo fgets($in, 4096);
}
echo "\n";
?>
c:\temp>
[cynic(cynic) <email protected> bin]$ echo "foo bar baz" | ./test.phpx
foo bar baz
[cynic(cynic) <email protected> bin]$ cat test.phpx
#!/tmp/php-4.0.7/bin/php -q
<?
$in = fopen('php://stdin', 'r');
while(!feof($in)){
echo fgets($in, 4096);
}
echo "\n";
?>
[cynic(cynic) <email protected> bin]$ uname -a
FreeBSD freepuppy 4.3-RELEASE-p14 FreeBSD 4.3-RELEASE-p14 #0: \
Tue Aug 28 15:45:24 CEST 2001 \
toor <email protected>:/usr/obj/usr/src/sys/FREEPUPPY i386
-- Edit bug report at: http://bugs.php.net/?id=13084&edit=1-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: derick <email protected>: "[PHP-DEV] Bug #10694 Updated: mktime leap year bug"
- Previous message: jeroen <email protected>: "[PHP-DEV] Bug #13073 Updated: empty() returns wrong value"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

