<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/posix.constants.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'ru',
  ),
  'this' => 
  array (
    0 => 'posix.constants.pathconf.php',
    1 => 'Константы функции posix_pathconf',
    2 => 'Константы функции posix_pathconf',
  ),
  'up' => 
  array (
    0 => 'posix.constants.php',
    1 => 'Предопределённые константы',
  ),
  'prev' => 
  array (
    0 => 'posix.constants.setrlimit.php',
    1 => 'Константы функции posix_setrlimit',
  ),
  'next' => 
  array (
    0 => 'posix.constants.sysconf.php',
    1 => 'posix_sysconf constants',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'ru',
    'path' => 'reference/posix/constants.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="posix.constants.pathconf" class="section">
  <h2 class="title">Константы функции <span class="function"><a href="function.posix-pathconf.php" class="function">posix_pathconf()</a></span></h2>
  <dl>
   
    <dt id="constant.posix-pc-link-max">
     <strong><code><a href="posix.constants.pathconf.php#constant.posix-pc-link-max">POSIX_PC_LINK_MAX</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Максимальное количество ссылок, которые могут содержать указанный файл или директория.
      Константа доступна с PHP 8.3.0.
     </span>
    </dd>
   
   
    <dt id="constant.posix-pc-max-canon">
     <strong><code><a href="posix.constants.pathconf.php#constant.posix-pc-max-canon">POSIX_PC_MAX_CANON</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Максимальный размер канонического входного буфера терминала в байтах
      (тогда путь становится символьным специальным файлом).
      Константа доступна с PHP 8.3.0.
     </span>
    </dd>
   
   
    <dt id="constant.posix-pc-max-input">
     <strong><code><a href="posix.constants.pathconf.php#constant.posix-pc-max-input">POSIX_PC_MAX_INPUT</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Максимальное размер очереди ввода терминала в байтах
      (тогда путь становится символьным специальным файлом).
      Константа доступна с PHP 8.3.0.
     </span>
    </dd>
   
   
    <dt id="constant.posix-pc-name-max">
     <strong><code><a href="posix.constants.pathconf.php#constant.posix-pc-name-max">POSIX_PC_NAME_MAX</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Максимальное количество символов только для имени файла, не его пути.
      Константа доступна с PHP 8.3.0.
     </span>
    </dd>
   
   
    <dt id="constant.posix-pc-path-max">
     <strong><code><a href="posix.constants.pathconf.php#constant.posix-pc-path-max">POSIX_PC_PATH_MAX</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Максимальное количество символов для полного имени пути.
      Константа доступна с PHP 8.3.0.
     </span>
    </dd>
   
   
    <dt id="constant.posix-pc-pipe-buf">
     <strong><code><a href="posix.constants.pathconf.php#constant.posix-pc-pipe-buf">POSIX_PC_PIPE_BUF</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Максимальное количество байтов, которые могут быть записаны в канал за одну операцию.
      Константа доступна с PHP 8.3.0.
     </span>
    </dd>
   
   
    <dt id="constant.posix-pc-chown-restricted">
     <strong><code><a href="posix.constants.pathconf.php#constant.posix-pc-chown-restricted">POSIX_PC_CHOWN_RESTRICTED</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Проверяет, требуются ли привилегии для работы функции <span class="function"><a href="function.chown.php" class="function">chown()</a></span>.
      Константа доступна с PHP 8.3.0.
     </span>
    </dd>
   
   
    <dt id="constant.posix-pc-no-trunc">
     <strong><code><a href="posix.constants.pathconf.php#constant.posix-pc-no-trunc">POSIX_PC_NO_TRUNC</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Проверяет, не превышает ли длина имени файла (или файлов внутри директории)
      значение константы <strong><code><a href="posix.constants.pathconf.php#constant.posix-pc-name-max">POSIX_PC_NAME_MAX</a></code></strong>.
      Константа доступна с PHP 8.3.0.
     </span>
    </dd>
   
   
    <dt id="constant.posix-pc-alloc-size-min">
     <strong><code><a href="posix.constants.pathconf.php#constant.posix-pc-alloc-size-min">POSIX_PC_ALLOC_SIZE_MIN</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Минимальный размер памяти в байтах, выделенной для любой части файла.
      Константа доступна с PHP 8.3.0.
     </span>
    </dd>
   
   
    <dt id="constant.posix-pc-alloc-symlink-max">
     <strong><code><a href="posix.constants.pathconf.php#constant.posix-pc-alloc-symlink-max">POSIX_PC_ALLOC_SYMLINK_MAX</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Максимальное количество символьных ссылок, которые указанный файл или директория могут содержать.
      Константа доступна с PHP 8.3.0.
     </span>
    </dd>
   
   
    <dt id="constant.posix-pc-symlink-max">
     <strong><code><a href="posix.constants.pathconf.php#constant.posix-pc-symlink-max">POSIX_PC_SYMLINK_MAX</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Максимальное количество байтов в символической ссылке.
      Константа доступна с PHP 8.3.0.
     </span>
    </dd>
   
  </dl>
 </div><?php manual_footer($setup); ?>