Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ericnorris committed Feb 25, 2018
1 parent e945a0b commit 76a486f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ stream_copy_to_stream($native_file, $unicode_file);
## Usage
```php
/**
* resource $stream` The stream to filter.
* string $to_encoding` The encoding to convert to.
* string $from_encoding` The encoding to convert from. Optional, defaults to mb_internal_encoding()
* int $read_write` See http://php.net/manual/en/function.stream-filter-append.php
* string|int $sub_char` The substitute character to use. Optional, defaults to mb_substitute_character()
* resource $stream The stream to filter.
* string $to_encoding The encoding to convert to.
* string $from_encoding The encoding to convert from. Optional, defaults to mb_internal_encoding()
* int $read_write See http://php.net/manual/en/function.stream-filter-append.php
* string|int $sub_char The substitute character to use. Optional, defaults to mb_substitute_character()
*/
stream_filter_append($stream, "convert.mbstring.$to_encoding/$from_encoding", $read_write, $sub_char);
```
Expand Down

0 comments on commit 76a486f

Please sign in to comment.