Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

httpinflatestream(3) [php man page]

HTTPINFLATESTREAM(3)							 1						      HTTPINFLATESTREAM(3)

The HttpInflateStream class

CLASS SYNOPSIS
HttpInflateStream HttpInflateStream o public HttpInflateStream::__construct ([int $flags]) o public HttpInflateStream HttpInflateStream::factory ([int $flags], [string $class_name = "HttpInflateStream"]) o public string HttpInflateStream::finish ([string $data]) o public string HttpInflateStream::flush ([string $data]) o public string HttpInflateStream::update (string $data) CLASS MEMBERS
CONSTANTS
+-----+-----------------+---+ |Type | | | | | | | | | Name | | | | | | | | Description | | | | | | +-----+-----------------+---+ |int | | | | | | | | | FLUSH_NONE | | | | | | | | no forced flush | | | | | | |int | | | | | | | | | FLUSH_SYNC | | | | | | | | synching flush | | | | | | |int | | | | | | | | | FLUSH_FULL | | | | | | | | full flush | | | | | | +-----+-----------------+---+ Note Flushing usually has no effect on inflate streams. EXAMPLES
Example #1 A HttpInflateStream example <?php $stream = new HttpInflateStream; echo $stream->update($data); echo $stream->finish(); ?> PHP Documentation Group HTTPINFLATESTREAM(3)

Check Out this Related Man Page

SPLFILEINFO(3)								 1							    SPLFILEINFO(3)

The SplFileInfo class

INTRODUCTION
The SplFileInfo class offers a high-level object oriented interface to information for an individual file. CLASS SYNOPSIS
SplFileInfo SplFileInfo Methods o public SplFileInfo::__construct (string $file_name) o public int SplFileInfo::getATime (void ) o public string SplFileInfo::getBasename ([string $suffix]) o public int SplFileInfo::getCTime (void ) o public string SplFileInfo::getExtension (void ) o public SplFileInfo SplFileInfo::getFileInfo ([string $class_name]) o public string SplFileInfo::getFilename (void ) o public int SplFileInfo::getGroup (void ) o public int SplFileInfo::getInode (void ) o public string SplFileInfo::getLinkTarget (void ) o public int SplFileInfo::getMTime (void ) o public int SplFileInfo::getOwner (void ) o public string SplFileInfo::getPath (void ) o public SplFileInfo SplFileInfo::getPathInfo ([string $class_name]) o public string SplFileInfo::getPathname (void ) o public int SplFileInfo::getPerms (void ) o public string SplFileInfo::getRealPath (void ) o public int SplFileInfo::getSize (void ) o public string SplFileInfo::getType (void ) o public bool SplFileInfo::isDir (void ) o public bool SplFileInfo::isExecutable (void ) o public bool SplFileInfo::isFile (void ) o public bool SplFileInfo::isLink (void ) o public bool SplFileInfo::isReadable (void ) o public bool SplFileInfo::isWritable (void ) o public SplFileObject SplFileInfo::openFile NULL ([string $open_mode = "r"], [bool $use_include_path = false], [resource $context]) o public void SplFileInfo::setFileClass ([string $class_name = "SplFileObject"]) o public void SplFileInfo::setInfoClass ([string $class_name = "SplFileInfo"]) o public void SplFileInfo::__toString (void ) PHP Documentation Group SPLFILEINFO(3)
Man Page

4 More Discussions You Might Find Interesting

1. AIX

end of case

hello How can I go out to a "case" boucle, but not finish the program : echo " your choice :" read grp1 do case ${grp1} in 1)grp1="toto1";; 2)grp1="toto2";; 3)grp1="toto3";; 4)grp1="toto4";; 5)grp1=t;; 6)grp1=t;; ... (3 Replies)
Discussion started by: pascalbout
3 Replies

2. Shell Programming and Scripting

how to echo the file contents LINE BY LINE

hello, i have a listing (let say ABC) consists of the below: : public database link public synonym role rollback segment : when i run the below for loop, for i in `more ABC` do echo "$i" done it gives me, : public database (4 Replies)
Discussion started by: newbie168
4 Replies

3. Solaris

Extract substring from a string

i have srtring i.e. "NAME,CLASS,AGE" (length of string is not constant) and from this string i've extract each word delimited by "," (comma). INPUT: "NAME,CLASS,AGE" OUTPUT: NAME CLASS AGE how can i do that? i have tried some string manipulation function like... (5 Replies)
Discussion started by: jadoo_c2
5 Replies

4. Shell Programming and Scripting

Command to flush specific domain in SunOS 5 DNS

Hello to all, May you help saying me how to flush a specific domain in Linux SunOS5 I know the command rndc is to flush DNS cache, but I would like to know: 1- How to do a flush only on specific domain 2- How to see the content of DNS Resolver cache (similar to info given by IPCONFIG... (2 Replies)
Discussion started by: Ophiuchus
2 Replies