Skip to content

Instantly share code, notes, and snippets.

View khusseini's full-sized avatar
🍉
Free Palestine

Khairi Husseini khusseini

🍉
Free Palestine
View GitHub Profile
@khusseini
khusseini / underscore.php
Last active October 10, 2015 06:17 — forked from troelskn/underscore.php
camelize + underscore in php
<?php
/**
* Transforms an under_scored_string to a camelCasedOne
*/
function camelize($scored) {
return preg_replace('/[-_]([a-z])/e', 'strtoupper("$1")', $scored);
}
/**
* Transforms a camelCasedString to an under_scored_one