skip( $handle,  $num_bytes )

In this article

Source

function skip( $handle, $num_bytes ) {
  return ( fseek( $handle, $num_bytes, SEEK_CUR ) == 0 );
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.