PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

Rar::getMethod> <Rar::getFileTime
Last updated: Fri, 26 Sep 2008

view this page in

Rar::getHostOs

(No version information available, might be only in CVS)

Rar::getHostOsGet entry host OS

Description

Rar
int getHostOs ( void )

Rar::getHostOs() return code of the host OS of the archive entry.

Return Values

Returns the code of the host OS, or FALSE on error.

Examples

Example #1 Rar::getHostOs() example

<?php

$rar_file 
rar_open('example.rar') or die("Failed to open Rar archive");

$entry rar_entry_get($rar_file'Dir/file.txt') or die("Failed to find such entry");

switch (
$entry->getHostOs()) {
    case 
RAR_HOST_MSDOS:
        echo 
"MS-DOS\n";
        break;
    case 
RAR_HOST_OS2:
        echo 
"OS2\n";
        break;
    case 
RAR_HOST_WIN32:
        echo 
"Win32\n";
        break;
    case 
RAR_HOST_MACOS:
        echo 
"MacOS\n";
        break;
    case 
RAR_HOST_UNIX:
        echo 
"Unix/Linux\n";
        break;
    case 
RAR_HOST_BEOS:
        echo 
"BeOS\n";
        break;
}

?>



add a note add a note User Contributed Notes
Rar::getHostOs
There are no user contributed notes for this page.

Rar::getMethod> <Rar::getFileTime
Last updated: Fri, 26 Sep 2008
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites