nm_read()


지정된 NM(비휘발성 사용자 메모리)의 데이터 읽기

Description

int nm_read(int $nm_id, int $offset, string &$rbuf, int $rlen)

Parameters

Return Value

읽은 데이터 크기(바이트)

Example

<?php
include "/lib/sd_340.php";
$rbuf = "";
nm_read(0, 0, $rbuf, 10);   // 0번 NM의 0번지부터 10바이트를 읽음
hexdump($rbuf);    // 읽은 데이터를 출력
?>

See also