JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
delete string_array.php (buggy, stupid)
[wfpl.git] / format.php
index 28c555d..81878eb 100644 (file)
@@ -173,6 +173,7 @@ function format_slug($str) {
 function format_varname($str) {
        $str = preg_replace("/([a-z])([A-Z])/", "\\1_\\2", $str); # split words on camelCase
        $str = strtolower($str);
+       $str = preg_replace("/['‘’]/", '', $str);
        $str = preg_replace('/[^a-z0-9_]+/', '_', $str);
        return preg_replace('/^([^a-z_])/', "_\\1", $str);
 }
@@ -302,13 +303,13 @@ function format_dollars($str) {
 # date is edited as mm/dd/yyyy but stored as yyyy-mm-dd
 function format_mdy_to_ymd($str) {
        if($str == '') return '';
-       require_once(__DIR__ . '/time.php');
+       require_once(__DIR__.'/'.'time.php');
        return mdy_to_ymd(format_oneline($str));
 }
 
 # date is yyyy-mm-dd
 function format_ymd($str) {
-       require_once(__DIR__ . '/time.php');
+       require_once(__DIR__.'/'.'time.php');
        list($year, $month, $day) = ymd_clean($str);
        return sprintf('%04u-%02u-%02u', $year, $month, $day);
 }