Skip to content

Instantly share code, notes, and snippets.

@michal
Created January 5, 2011 22:56
Show Gist options
  • Save michal/767185 to your computer and use it in GitHub Desktop.
Save michal/767185 to your computer and use it in GitHub Desktop.
<?php
class Endo_Filter_Typografic implements Zend_Filter_Interface
{
public function filter($value)
{
$value = preg_replace('/(\s([\w]{1})\s)/u', ' ${2}&nbsp;', $value);
return $value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment