<?php $str = "uncompressed data";$bz = bzopen("/tmp/foo.bz2", "w");bzwrite($bz, $str, strlen($str));bzclose($bz);?>