posix_mknod
(PHP 5 >= 5.1.0, PHP 7, PHP 8)
posix_mknod — スペシャルファイルあるいは通常のファイルを作成する (POSIX.1)
説明
スペシャルファイルあるいは通常のファイルを作成します。
パラメータ
filename
-
作成するファイル。
flags
-
このパラメータは、ファイル型(以下の定数
POSIX_S_IFREG
、POSIX_S_IFCHR
、POSIX_S_IFBLK
、POSIX_S_IFIFO
あるいはPOSIX_S_IFSOCK
のうちのひとつ) およびパーミッションの論理和で構成されます。 major
-
メジャーデバイスカーネル ID (
S_IFCHR
あるいはS_IFBLK
を使用している場合に渡す必要があります)。 minor
-
マイナーデバイスカーネル ID。
例
例1 posix_mknod() の例
<?php
$file = '/tmp/tmpfile'; // ファイル名
$type = POSIX_S_IFBLK; // ファイル型
$permissions = 0777; // 8 進数
$major = 1;
$minor = 8; // /dev/random
if (!posix_mknod($file, $type | $permissions, $major, $minor)) {
die('Error ' . posix_get_last_error() . ': ' . posix_strerror(posix_get_last_error()));
}
?>
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google