Switching tabs and spaces
<?php
$tabbed = str_replace(' ',"\t",'this is a test');
$spaced = str_replace("\t",' ','this is a test');
print "With Tabs: <pre>$tabbed</pre>";
print "With Spaces: <pre>$spaced</pre>";
?>
Related examples in the same category