mb_convert_encoding_variation1.phpt 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. --TEST--
  2. Test mb_convert_encoding() function : usage variations - pass different data types as $to_encoding arg
  3. --SKIPIF--
  4. <?php
  5. extension_loaded('mbstring') or die('skip');
  6. function_exists('mb_convert_encoding') or die("skip mb_convert_encoding() is not available in this build");
  7. ?>
  8. --FILE--
  9. <?php
  10. /* Prototype : string mb_convert_encoding(string $str, string $to_encoding [, mixed $from_encoding])
  11. * Description: Returns converted string in desired encoding
  12. * Source code: ext/mbstring/mbstring.c
  13. */
  14. /*
  15. * Pass different data types to $to_encoding arg to test behaviour of mb_convert_encoding
  16. */
  17. echo "*** Testing mb_convert_encoding() : usage variations ***\n";
  18. // Initialise function arguments not being substituted
  19. mb_internal_encoding('utf-8');
  20. $sourcestring = b'hello, world';
  21. //get an unset variable
  22. $unset_var = 10;
  23. unset ($unset_var);
  24. // get a class
  25. class classA
  26. {
  27. public function __toString() {
  28. return "Class A object";
  29. }
  30. }
  31. // heredoc string
  32. $heredoc = <<<EOT
  33. UTF-8
  34. EOT;
  35. // get a resource variable
  36. $fp = fopen(__FILE__, "r");
  37. // unexpected values to be passed to $to_encoding argument
  38. $inputs = array(
  39. // int data
  40. /*1*/ 0,
  41. 1,
  42. 12345,
  43. -2345,
  44. // float data
  45. /*5*/ 10.5,
  46. -10.5,
  47. 12.3456789000e10,
  48. 12.3456789000E-10,
  49. .5,
  50. // null data
  51. /*10*/ NULL,
  52. null,
  53. // boolean data
  54. /*12*/ true,
  55. false,
  56. TRUE,
  57. FALSE,
  58. // empty data
  59. /*16*/ "",
  60. '',
  61. // string data
  62. /*18*/ "UTF-8",
  63. 'UTF-8',
  64. $heredoc,
  65. // object data
  66. /*21*/ new classA(),
  67. // undefined data
  68. /*22*/ @$undefined_var,
  69. // unset data
  70. /*23*/ @$unset_var,
  71. // resource variable
  72. /*24*/ $fp
  73. );
  74. // loop through each element of $inputs to check the behaviour of mb_convert_encoding()
  75. $iterator = 1;
  76. foreach($inputs as $input) {
  77. echo "\n-- Iteration $iterator --\n";
  78. var_dump(bin2hex( mb_convert_encoding($sourcestring, $input, 'ISO-8859-1') ));
  79. $iterator++;
  80. };
  81. fclose($fp);
  82. echo "Done";
  83. ?>
  84. --EXPECTF--
  85. *** Testing mb_convert_encoding() : usage variations ***
  86. -- Iteration 1 --
  87. Warning: mb_convert_encoding(): Unknown encoding "0" in %s on line %d
  88. string(0) ""
  89. -- Iteration 2 --
  90. Warning: mb_convert_encoding(): Unknown encoding "1" in %s on line %d
  91. string(0) ""
  92. -- Iteration 3 --
  93. Warning: mb_convert_encoding(): Unknown encoding "12345" in %s on line %d
  94. string(0) ""
  95. -- Iteration 4 --
  96. Warning: mb_convert_encoding(): Unknown encoding "-2345" in %s on line %d
  97. string(0) ""
  98. -- Iteration 5 --
  99. Warning: mb_convert_encoding(): Unknown encoding "10.5" in %s on line %d
  100. string(0) ""
  101. -- Iteration 6 --
  102. Warning: mb_convert_encoding(): Unknown encoding "-10.5" in %s on line %d
  103. string(0) ""
  104. -- Iteration 7 --
  105. Warning: mb_convert_encoding(): Unknown encoding "123456789000" in %s on line %d
  106. string(0) ""
  107. -- Iteration 8 --
  108. Warning: mb_convert_encoding(): Unknown encoding "1.23456789E-9" in %s on line %d
  109. string(0) ""
  110. -- Iteration 9 --
  111. Warning: mb_convert_encoding(): Unknown encoding "0.5" in %s on line %d
  112. string(0) ""
  113. -- Iteration 10 --
  114. string(24) "68656c6c6f2c20776f726c64"
  115. -- Iteration 11 --
  116. string(24) "68656c6c6f2c20776f726c64"
  117. -- Iteration 12 --
  118. Warning: mb_convert_encoding(): Unknown encoding "1" in %s on line %d
  119. string(0) ""
  120. -- Iteration 13 --
  121. string(24) "68656c6c6f2c20776f726c64"
  122. -- Iteration 14 --
  123. Warning: mb_convert_encoding(): Unknown encoding "1" in %s on line %d
  124. string(0) ""
  125. -- Iteration 15 --
  126. string(24) "68656c6c6f2c20776f726c64"
  127. -- Iteration 16 --
  128. string(24) "68656c6c6f2c20776f726c64"
  129. -- Iteration 17 --
  130. string(24) "68656c6c6f2c20776f726c64"
  131. -- Iteration 18 --
  132. string(24) "68656c6c6f2c20776f726c64"
  133. -- Iteration 19 --
  134. string(24) "68656c6c6f2c20776f726c64"
  135. -- Iteration 20 --
  136. string(24) "68656c6c6f2c20776f726c64"
  137. -- Iteration 21 --
  138. Warning: mb_convert_encoding(): Unknown encoding "Class A object" in %s on line %d
  139. string(0) ""
  140. -- Iteration 22 --
  141. string(24) "68656c6c6f2c20776f726c64"
  142. -- Iteration 23 --
  143. string(24) "68656c6c6f2c20776f726c64"
  144. -- Iteration 24 --
  145. Warning: mb_convert_encoding() expects parameter 2 to be string, resource given in %s on line %d
  146. string(0) ""
  147. Done