RarEntry::getMethod

(PECL rar >= 0.1)
Get pack method of the entry
public int RarEntry::getMethod ( void )

RarEntry::getMethod() returns number of the method used when adding current archive entry.

Returns:

Returns the method number or FALSE on error.

Examples:
RarEntry::getMethod() 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");

echo "Method number: " . $entry->getMethod();

?>

doc_php
2016-02-24 15:55:36
Comments
Leave a Comment

Please login to continue.