You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 10, 2021. It is now read-only.
echo"The following files have non UTF-8 characters:\n\n";
107
105
foreach($allFilesas$file)
@@ -124,8 +122,20 @@ public function listNonUtf8Files($createUtf8Version = false)
124
122
125
123
}
126
124
127
-
125
+
// don't create utf8 versions by default
126
+
$create = false;
127
+
if(sizeof($argv) > 1)
128
+
{
129
+
if($argv[1] !== 'create')
130
+
{
131
+
echo"Usage (should be from MIDAS BASE DIR):\n\nphp Utf8tools.php [create]\n\noptional argument create says to create utf8 versions on non utf8 encoded files\n";
0 commit comments