summaryrefslogtreecommitdiff
path: root/ext/iconv/tests/iconv_strlen.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/iconv/tests/iconv_strlen.phpt')
-rw-r--r--ext/iconv/tests/iconv_strlen.phpt19
1 files changed, 0 insertions, 19 deletions
diff --git a/ext/iconv/tests/iconv_strlen.phpt b/ext/iconv/tests/iconv_strlen.phpt
deleted file mode 100644
index 2c815f4f31..0000000000
--- a/ext/iconv/tests/iconv_strlen.phpt
+++ /dev/null
@@ -1,19 +0,0 @@
---TEST--
-iconv_strlen()
---SKIPIF--
-<?php extension_loaded('iconv') or die('skip iconv extension is not available'); ?>
---FILE--
-<?php
-function foo($str, $charset) {
- var_dump(strlen($str));
- var_dump(iconv_strlen($str, $charset));
-}
-
-foo("abc", "ASCII");
-foo("ÆüËܸì EUC-JP", "EUC-JP");
-?>
---EXPECT--
-int(3)
-int(3)
-int(13)
-int(10)