mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-20 19:08:54 +00:00

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@169434 c90b9560-bf6c-de11-be94-00142212c4b1
105 lines
2.8 KiB
XML
105 lines
2.8 KiB
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<!-- $Revision: 1.1 $ -->
|
|
<refentry id="function.Rar-getAttr">
|
|
<refnamediv>
|
|
<refname>Rar::getAttr</refname>
|
|
<refpurpose>Get attributes of the entry</refpurpose>
|
|
</refnamediv>
|
|
<refsect1>
|
|
<title>Description</title>
|
|
<methodsynopsis>
|
|
<type>int</type><methodname>Rar::getAttr</methodname>
|
|
<void/>
|
|
</methodsynopsis>
|
|
<para>
|
|
<function>Rar::getAttr</function> returns attributes of the archive
|
|
entry.
|
|
</para>
|
|
<example>
|
|
<title><function>Rar::getAttr</function> example</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
|
|
$rar_file = rar_open('example.rar') or die("Can't open Rar archive");
|
|
|
|
$entry = rar_entry_get($rar_file, 'dir/in/the/archive') or die("Can't find such entry");
|
|
|
|
$host_os = $entry->getHostOs();
|
|
$attr = $entry->getAttr();
|
|
|
|
switch($host_os) {
|
|
case RAR_HOST_MSDOS:
|
|
case RAR_HOST_OS2:
|
|
case RAR_HOST_WIN32:
|
|
case RAR_HOST_MACOS:
|
|
printf("%c%c%c%c%c%c\n",
|
|
($attr & 0x08) ? 'V' : '.',
|
|
($attr & 0x10) ? 'D' : '.',
|
|
($attr & 0x01) ? 'R' : '.',
|
|
($attr & 0x02) ? 'H' : '.',
|
|
($attr & 0x04) ? 'S' : '.',
|
|
($attr & 0x20) ? 'A' : '.');
|
|
break;
|
|
case RAR_HOST_UNIX:
|
|
case RAR_HOST_BEOS:
|
|
switch ($attr & 0xF000)
|
|
{
|
|
case 0x4000:
|
|
printf("d");
|
|
break;
|
|
case 0xA000:
|
|
printf("l");
|
|
break;
|
|
default:
|
|
printf("-");
|
|
break;
|
|
}
|
|
printf("%c%c%c%c%c%c%c%c%c\n",
|
|
($attr & 0x0100) ? 'r' : '-',
|
|
($attr & 0x0080) ? 'w' : '-',
|
|
($attr & 0x0040) ? (($attr & 0x0800) ? 's':'x'):(($attr & 0x0800) ? 'S':'-'),
|
|
($attr & 0x0020) ? 'r' : '-',
|
|
($attr & 0x0010) ? 'w' : '-',
|
|
($attr & 0x0008) ? (($attr & 0x0400) ? 's':'x'):(($attr & 0x0400) ? 'S':'-'),
|
|
($attr & 0x0004) ? 'r' : '-',
|
|
($attr & 0x0002) ? 'w' : '-',
|
|
($attr & 0x0001) ? 'x' : '-');
|
|
break;
|
|
}
|
|
|
|
rar_close($rar_file);
|
|
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
<para>
|
|
<function>Rar::getAttr</function> returns &false; on error.
|
|
</para>
|
|
<para>
|
|
See also <function>Rar::getHostOs</function>.
|
|
</para>
|
|
</refsect1>
|
|
</refentry>
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-omittag:t
|
|
sgml-shorttag:t
|
|
sgml-minimize-attributes:nil
|
|
sgml-always-quote-attributes:t
|
|
sgml-indent-step:1
|
|
sgml-indent-data:t
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"../../../../manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|