array_rand_variation6.phpt 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. --TEST--
  2. Test array_rand() function : usage variation - with heredoc string as key in the 'input' array
  3. --FILE--
  4. <?php
  5. /* Prototype : mixed array_rand(array $input [, int $num_req])
  6. * Description: Return key/keys for random entry/entries in the array
  7. * Source code: ext/standard/array.c
  8. */
  9. /*
  10. * Test behaviour of array_rand() when keys of the 'input' array is heredoc string
  11. */
  12. echo "*** Testing array_rand() : with keys of input array as heredoc strings ***\n";
  13. // defining different heredoc strings
  14. $empty_heredoc = <<<EOT
  15. EOT;
  16. $heredoc_with_newline = <<<EOT
  17. \n
  18. EOT;
  19. $heredoc_with_characters = <<<EOT
  20. first line of heredoc string
  21. second line of heredoc string
  22. third line of heredocstring
  23. EOT;
  24. $heredoc_with_newline_and_tabs = <<<EOT
  25. hello\tworld\nhello\nworld\n
  26. EOT;
  27. $heredoc_with_alphanumerics = <<<EOT
  28. hello123world456
  29. 1234hello\t1234
  30. EOT;
  31. $heredoc_with_embedded_nulls = <<<EOT
  32. hello\0world\0hello
  33. \0hello\0
  34. EOT;
  35. $input = array(
  36. $empty_heredoc => "heredoc1",
  37. $heredoc_with_newline => "heredoc2",
  38. $heredoc_with_characters => "heredoc3",
  39. $heredoc_with_newline_and_tabs => "heredoc3",
  40. $heredoc_with_alphanumerics => "heredoc4",
  41. $heredoc_with_embedded_nulls => "heredoc5"
  42. );
  43. // Test array_rand() function with different valid 'req_num' values
  44. echo "\n-- with default parameters --\n";
  45. var_dump( array_rand($input) );
  46. echo "\n-- with num_req = 1 --\n";
  47. var_dump( array_rand($input, 1) );
  48. echo "\n-- with num_req = 3 --\n";
  49. var_dump( array_rand($input, 3) );
  50. echo "\n-- with num_req = 6 --\n";
  51. var_dump( array_rand($input, 6) );
  52. echo "Done";
  53. ?>
  54. --EXPECTREGEX--
  55. \*\*\* Testing array_rand\(\) : with keys of input array as heredoc strings \*\*\*
  56. -- with default parameters --
  57. string\([0-9]*\) "[a-z \n \t \0 0-9 ]*"
  58. -- with num_req = 1 --
  59. string\([0-9]*\) "[a-z \n \t \0 0-9 ]*"
  60. -- with num_req = 3 --
  61. array\(3\) {
  62. \[0\]=>
  63. string\([0-9]*\) "[a-z \n \t \0 0-9 ]*"
  64. \[1\]=>
  65. string\([0-9]*\) "[a-z \n \t \0 0-9 ]*"
  66. \[2\]=>
  67. string\([0-9]*\) "[a-z \n \t \0 0-9 ]*"
  68. }
  69. -- with num_req = 6 --
  70. array\(6\) {
  71. \[0\]=>
  72. string\([0-9]*\) "[a-z \n \t \0 0-9 ]*"
  73. \[1\]=>
  74. string\([0-9]*\) "[a-z \n \t \0 0-9 ]*"
  75. \[2\]=>
  76. string\([0-9]*\) "[a-z \n \t \0 0-9 ]*"
  77. \[3\]=>
  78. string\([0-9]*\) "[a-z \n \t \0 0-9 ]*"
  79. \[4\]=>
  80. string\([0-9]*\) "[a-z \n \t \0 0-9 ]*"
  81. \[5\]=>
  82. string\([0-9]*\) "[a-z \n \t \0 0-9 ]*"
  83. }
  84. Done