diff options
-rw-r--r-- | ext/filter/tests/033_run.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/filter/tests/033_run.inc b/ext/filter/tests/033_run.inc index c77d888ac4..e3b67387ca 100644 --- a/ext/filter/tests/033_run.inc +++ b/ext/filter/tests/033_run.inc @@ -1,7 +1,12 @@ <?php +if (function_exists('setlocale')) { + setlocale(LC_ALL, 'C'); +} + function test($data) { return strtoupper($data); } + $data = array( "PHP", "1", |