global statement removal: hphp/test/zend [2/x]
[hiphop-php.git] / hphp / test / zend / good / ext / iconv / tests / iconv_strlen_error2.php
blob7687efe9b33ad3f35957f191ee53e4b3d7185a59
1 <?php
2 /* Prototype : int iconv_strlen(string str [, string charset])
3 * Description: Get character numbers of a string
4 * Source code: ext/iconv/iconv.c
5 */
7 /*
8 * Test iconv_strlen when passed an unknown encoding
9 */
11 echo "*** Testing iconv_strlen() : error ***\n";
13 $string = 'abcdef';
15 $encoding = 'unknown-encoding';
17 var_dump(iconv_strlen($string, $encoding));
20 ===DONE===