Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 3081 - 3090 of 5,834 for content_length:[0 TO 9999] (0.07 sec)

  1. msgget.txt

    =over =item msgget KEY,FLAGS X<msgget> Calls the System V IPC function L<msgget(2)>. Returns the message queue id, or L<C<undef>|/undef EXPR> on error. See also L<perlipc/"SysV IPC"> and the docume...
    perldoc.perl.org/functions/msgget.txt
    Registered: Tue Nov 05 02:03:47 UTC 2024
    - 315 bytes
    - Viewed (0)
  2. getpeername.txt

    =over =item getpeername SOCKET X<getpeername> X<peer> Returns the packed sockaddr address of the other end of the SOCKET connection. use Socket; my $hersockaddr = getpeername($sock); my ($port, $ia...
    perldoc.perl.org/functions/getpeername.txt
    Registered: Tue Nov 05 01:29:04 UTC 2024
    - 356 bytes
    - Viewed (0)
  3. print.txt

    =over =item print FILEHANDLE LIST X<print> =item print FILEHANDLE =item print LIST =item print Prints a string or a list of strings. Returns true if successful. FILEHANDLE may be a scalar variable ...
    perldoc.perl.org/functions/print.txt
    Registered: Mon Nov 04 17:50:35 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. eof.txt

    =over =item eof FILEHANDLE X<eof> X<end of file> X<end-of-file> =item eof () =item eof Returns 1 if the next read on FILEHANDLE will return end of file I<or> if FILEHANDLE is not open. FILEHANDLE m...
    perldoc.perl.org/functions/eof.txt
    Registered: Mon Nov 04 17:41:16 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. utime.txt

    =over =item utime LIST X<utime> Changes the access and modification times on each file of a list of files. The first two elements of the list must be the NUMERIC access and modification times, in t...
    perldoc.perl.org/functions/utime.txt
    Registered: Mon Nov 04 18:08:54 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. dump.txt

    =over =item dump LABEL X<dump> X<core> X<undump> =item dump EXPR =item dump This function causes an immediate core dump. See also the B<-u> command-line switch in L<perlrun|perlrun/-u>, which does ...
    perldoc.perl.org/functions/dump.txt
    Registered: Mon Nov 04 16:56:17 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. reverse.txt

    =over =item reverse LIST X<reverse> X<rev> X<invert> In list context, returns a list value consisting of the elements of LIST in the opposite order. In scalar context, concatenates the elements of ...
    perldoc.perl.org/functions/reverse.txt
    Registered: Mon Nov 04 18:27:36 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. pop.txt

    =over =item pop ARRAY X<pop> X<stack> =item pop Removes and returns the B<last> element of the array, shortening the array by one element. my @arr = ('cat', 'dog', 'mouse'); my $item = pop(@arr); #...
    perldoc.perl.org/functions/pop.txt
    Registered: Mon Nov 04 17:23:29 UTC 2024
    - 902 bytes
    - Viewed (0)
  9. length.txt

    =over =item length EXPR X<length> X<size> =item length Returns the length in I<characters> of the value of EXPR. If EXPR is omitted, returns the length of L<C<$_>|perlvar/$_>. If EXPR is undefined,...
    perldoc.perl.org/functions/length.txt
    Registered: Mon Nov 04 18:24:01 UTC 2024
    - 713 bytes
    - Viewed (0)
  10. truncate.txt

    =over =item truncate FILEHANDLE,LENGTH X<truncate> =item truncate EXPR,LENGTH Truncates the file opened on FILEHANDLE, or named by EXPR, to the specified length. Raises an exception if truncate isn...
    perldoc.perl.org/functions/truncate.txt
    Registered: Mon Nov 04 15:42:54 UTC 2024
    - 573 bytes
    - Viewed (0)
Back to top