This filter modifies a given string such that ‘words-with-dashes’ are converted to ‘WordsWithDashes’.
There are no additional options for Zend\Filter\Word\DashToCamelCase:
A basic example of usage is below:
1 2 3 | $filter = new Zend\Filter\Word\DashToCamelCase();
print $filter->filter('this-is-my-content');
|
The above example returns ‘ThisIsMyContent’.
The source code of this file is hosted on GitHub. Everyone can update and fix errors in this document with few clicks - no downloads needed.