Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 3681 - 3690 of 6,887 for content_length:[0 TO 9999] (0.07 sec)

  1. values.txt

    =over =item values HASH X<values> =item values ARRAY In list context, returns a list consisting of all the values of the named hash. In Perl 5.12 or later only, will also return a list of the value...
    perldoc.perl.org/functions/values.txt
    Registered: Fri Apr 18 20:39:48 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  2. umask.txt

    =over =item umask EXPR X<umask> =item umask Sets the umask for the process to EXPR and returns the previous value. If EXPR is omitted, merely returns the current umask. The Unix permission C<rwxr-x...
    perldoc.perl.org/functions/umask.txt
    Registered: Fri Apr 18 21:39:19 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  3. 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: Fri Apr 18 22:52:20 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  4. redo.txt

    =over =item redo LABEL X<redo> =item redo EXPR =item redo The L<C<redo>|/redo LABEL> command restarts the loop block without evaluating the conditional again. The L<C<continue>|/continue BLOCK> blo...
    perldoc.perl.org/functions/redo.txt
    Registered: Fri Apr 18 23:26:01 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  5. last.txt

    =over =item last LABEL X<last> X<break> =item last EXPR =item last The L<C<last>|/last LABEL> command is like the C<break> statement in C (as used in loops); it immediately exits the loop in questi...
    perldoc.perl.org/functions/last.txt
    Registered: Fri Apr 18 22:58:59 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  6. waitpid.txt

    =over =item waitpid PID,FLAGS X<waitpid> Waits for a particular child process to terminate and returns the pid of the deceased process, or C<-1> if there is no such child process. A non-blocking wa...
    perldoc.perl.org/functions/waitpid.txt
    Registered: Sat Apr 19 01:15:38 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  7. index.txt

    =over =item index STR,SUBSTR,POSITION X<index> X<indexOf> X<InStr> =item index STR,SUBSTR The index function searches for one string within another, but without the wildcard-like behavior of a full...
    perldoc.perl.org/functions/index.txt
    Registered: Fri Apr 18 20:46:22 UTC 2025
    - 1K bytes
    - Viewed (0)
  8. wantarray.txt

    =over =item wantarray X<wantarray> X<context> Returns true if the context of the currently executing subroutine or L<C<eval>|/eval EXPR> is looking for a list value. Returns false if the context is...
    perldoc.perl.org/functions/wantarray.txt
    Registered: Sat Apr 19 01:05:16 UTC 2025
    - 675 bytes
    - Viewed (0)
  9. 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: Sat Apr 19 00:26:24 UTC 2025
    - 356 bytes
    - Viewed (0)
  10. reset.txt

    =over =item reset EXPR X<reset> =item reset Generally used in a L<C<continue>|/continue BLOCK> block at the end of a loop to clear variables and reset C<m?pattern?> searches so that they work again...
    perldoc.perl.org/functions/reset.txt
    Registered: Sat Apr 19 05:28:25 UTC 2025
    - 1.1K bytes
    - Viewed (0)
Back to top