All pastes #2086463 Raw Edit

Untitled

public php v1 · immutable
#2086463 ·published 2011-10-03 14:45 UTC
rendered paste body
	public function generateAttributeLabel($name)	{		if (function_exists('mb_convert_case')) {			return mb_convert_case(				str_replace(array('-','_','.'), ' ', $name),				MB_CASE_TITLE,				'utf-8'			);		}		else {			return ucwords(trim(mb_strtolower(str_replace(array('-','_','.'),' ',				preg_replace('/(?<![A-Z])[A-Z]/', ' \0', $name)))));		}	}