<?php function underscoreToCamel ($str) { // Remove underscores, capitalize words, squash, lowercase first. return lcfirst(str_replace(' ', '', ucwords(str_replace('_', ' ', $str)))); } echo underscoreToCamel('my_variable_name');
You have javascript disabled. You will not be able to edit any code.