Tie::StdHandle - phpMan

Command: man perldoc info search(apropos)  


Sections
NAME SYNOPSIS DESCRIPTION
NAME
    Tie::StdHandle - base class definitions for tied handles

SYNOPSIS
        package NewHandle;
        require Tie::Handle;

        @ISA = qw(Tie::Handle);

        sub READ { ... }            # Provide a needed method
        sub TIEHANDLE { ... }       # Overrides inherited method


        package main;

        tie *FH, 'NewHandle';

DESCRIPTION
    The Tie::StdHandle package provide most methods for file handles
    described in perltie (the exceptions are "UNTIE" and "DESTROY"). It
    causes tied file handles to behave exactly like standard file handles
    and allow for selective overwriting of methods.


Generated by phpMan Author: Che Dong On Apache Under GNU General Public License - MarkDown Format
2026-05-23 06:08 @216.73.217.24 CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Valid XHTML 1.0 TransitionalValid CSS!

^_back to top