Avifinfo
skip()
Skips 'num_bytes' from the 'stream'. 'num_bytes' can be zero.
Хуков нет.
Возвращает
null. Ничего (null).
Использование
skip( $handle, $num_bytes );
- $handle(обязательный)
- .
- $num_bytes(обязательный)
- .
Код skip() skip WP 6.9
function skip( $handle, $num_bytes ) {
return ( fseek( $handle, $num_bytes, SEEK_CUR ) == 0 );
}