Hello German,
>> > Здраствуйте! Можете объяснить чайнику, что значит $| = not 0;
>> > И в данном случае Перл используется как CGI?
>> $| = 1;
>>
>> not 0 = 1;
>> not 1 = 0;
GR> :-) Это-то понятно :-)
GR> Мне интересно, что это на самом деле делает?
Отключает буферизацию вывода.
http://www.perldoc.com/perl5.6/pod/perlvar.html
$OUTPUT_AUTOFLUSH
$|
If set to nonzero, forces a flush right away and after every write or
print on the currently selected output channel. Default is 0
(regardless of whether the channel is really buffered by the system or
not; $| tells you only whether you've asked Perl explicitly to flush
after each write). STDOUT will typically be line buffered if output is
to the terminal and block buffered otherwise. Setting this variable is
useful primarily when you are outputting to a pipe or socket, such as
when you are running a Perl program under rsh and want to see the
output as it's happening. This has no effect on input buffering. See
perlfunc/getc for that. (Mnemonic: when you want your pipes to be
piping hot.)
Best regards,
Andrew Sitnikov
e-mail : sitnikov@xxxxxxxxxx
GSM : (+372) 56491109
=============================================================================
= Apache-Talk@xxxxxxxxxxxxx mailing list =
Mail "unsubscribe apache-talk" to majordomo@xxxxxxxxxxxxx if you want to quit.
= Archive avaliable at http://www.lexa.ru/apache-talk =
"Russian Apache" includes software developed
by the Apache Group for use in the Apache HTTP server project
(http://www.apache.org/) See
Apache LICENSE.
Copyright (C) 1995-2001 The Apache Group. All rights reserved.
Copyright (C) 1996 Dm. Kryukov; Copyright (C)
1997-2009 Alex Tutubalin. Design (C) 1998 Max Smolev.