dio_open
(PHP 4 >= 4.2.0, PHP 5 < 5.1.0)
dio_open — Opens a file (creating it if necessary) at a lower level than the C library input/ouput stream functions allow
Description
$filename
, int $flags
[, int $mode
= 0
] ) : resourcedio_open() opens a file and returns a new file descriptor for it.
Parameters
-
filename
-
The pathname of the file to open.
-
flags
-
The
flags
parameter is a bitwise-ORed value comprising flags from the following list. This value must include one ofO_RDONLY
,O_WRONLY
, orO_RDWR
. Additionally, it may include any combination of the other flags from this list.-
O_RDONLY
- opens the file for read access. -
O_WRONLY
- opens the file for write access. -
O_RDWR
- opens the file for both reading and writing. -
O_CREAT
- creates the file, if it doesn't already exist. -
O_EXCL
- if bothO_CREAT
andO_EXCL
are set and the file already exists, dio_open() will fail. -
O_TRUNC
- if the file exists and is opened for write access, the file will be truncated to zero length. -
O_APPEND
- write operations write data at the end of the file. -
O_NONBLOCK
- sets non blocking mode. -
O_NOCTTY
- prevent the OS from assigning the opened file as the process's controlling terminal when opening a TTY device file.
-
-
mode
-
If
flags
containsO_CREAT
,mode
will set the permissions of the file (creation permissions).mode
is required for correct operation whenO_CREAT
is specified inflags
and is ignored otherwise.The actual permissions assigned to the created file will be affected by the process's umask setting as per usual.
Examples
Example #1 Opening a file descriptor
<?php
$fd = dio_open('/dev/ttyS0', O_RDWR | O_NOCTTY | O_NONBLOCK);
dio_close($fd);
?>
Vertaling niet beschikbaar
De PHP-handleiding is nog niet in het Nederlands vertaald, dus het scherm is in het Engels. Als u wilt, kunt u het ook in het Frans of in het Duits raadplegen.
Als je de moed voelt, kun je je vertaling aanbieden ;-)
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 30/01/2003 gemaakt, de laatste keer de 26/10/2018 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/php-rf-function.dio-open.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.