Skip to content

Instantly share code, notes, and snippets.

View platonische's full-sized avatar
🎯
Focusing

platonische platonische

🎯
Focusing
View GitHub Profile
@platonische
platonische / snake-to-camel.php
Created March 15, 2024 04:44 — forked from carousel/snake-to-camel.php
Convert snake to camel case and back with PHP
<?php
function camel_to_snake($input)
{
return strtolower(preg_replace('/(?<!^)[A-Z]/', '_$0', $input));
}
function snakeToCamel($input)
{
return lcfirst(str_replace(' ', '', ucwords(str_replace('_', ' ', $input))));
}