X-Git-Url: https://jasonwoof.com/gitweb/?p=wfpl.git;a=blobdiff_plain;f=format.php;h=e0818fdb401c4d732cec27ee21f9d6712ab27d1f;hp=17d0461a783be7933c15a1137d9dec887c4defe4;hb=eecd5e3576866afc8091abe9b74352130fd8e6cc;hpb=571c58fff7b139f590b5c4862761092bc1045436 diff --git a/format.php b/format.php index 17d0461..e0818fd 100644 --- a/format.php +++ b/format.php @@ -19,6 +19,7 @@ # This file contains basic encodings function format_caption($str) { + $str = preg_replace("/([a-z])([A-Z])/", "\\1 \\2", $str); # split words on camelCase $str = str_replace('_', ' ', $str); $str = ucwords($str); return $str; @@ -163,6 +164,7 @@ function format_image_w_h_thumb_w_h($str) { } function format_varname($str) { + $str = preg_replace("/([a-z])([A-Z])/", "\\1_\\2", $str); # split words on camelCase $str = strtolower($str); $str = ereg_replace('[^a-z0-9_]', '_', $str); return ereg_replace('^[0-9]*', '', $str);