PHP 5 has an excellent streams interface and filtering support.
- • PHP 5 will come standard with a number of filters such as rot13
- • Painless support for http://, https:// ftp:// ftps://
- • Can define new streams and filters in userspace
- • Compression streams compression.gzip:// and compression.bz2://
Filter Example
<?php
$data = file_get_contents("php://filter/read=string.rot13/resource=http://www.coggeshall.org/");
?>