Delicious Bookmark this on Delicious Share on Facebook SlashdotSlashdot It! Digg! Digg



PHP : Function Reference : Rar Functions : Rar::getHostOs

Rar::getHostOs

Get entry host OS ()

Example 2059. 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;
}

?>

Related Examples ( Source code ) » rar_gethostos











Change Language


Follow Navioo On Twitter
rar_close
rar_entry_get
Rar::extract
Rar::getAttr
Rar::getCrc
Rar::getFileTime
Rar::getHostOs
Rar::getMethod
Rar::getName
Rar::getPackedSize
Rar::getUnpackedSize
Rar::getVersion
rar_list
rar_open
eXTReMe Tracker