From professional translators, enterprises, web pages and freely available translation repositories.
this method is called whenever data is read from the attached stream (such as with fread()). a filter should first call parent::read($maxlength); to retrieve the data from the previous filter who, ultimately, retrieved it from the stream. your filter may then modify the data as needed and return it. your filter should never return more than maxlength bytes. since parent::read($maxlength); will also not return more than maxlength bytes this will ordinarily be a non-issue. however, if your filter increases the size of the data being returned, you should either call parent::read($maxlength-$x); where x is the most your filter will grow the size of the data read. alternatively, you can build a read-buffer into your class.
a filter should first call parent::read( $maxlength); to retrieve the data from the previous filter who, ultimately, retrieved it from the stream.