(PHP 4 >= 4.2.0, PHP 5 < 5.1.0)
dio_seek — 将文件指针移动到fd的pos位置
示例 #1 在文件中定位
<?php
$fd = dio_open('/dev/ttyS0', O_RDWR);
dio_seek($fd, 10, SEEK_SET);
// 位置现在位于文件开头的第10个字符处
dio_seek($fd, -2, SEEK_CUR);
// 位置现在位于文件开头的第8个字符处
dio_seek($fd, -5, SEEK_END);
// 位置现在位于文件结尾之前的第5个字符处
dio_seek($fd, 10, SEEK_END);
// 位置现在位于文件结尾之后的第10个字符处。
// 文件结尾和当前位置之间的10个字符用零填充。
dio_close($fd);
?>