token_get_all_basic.phpt 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. --TEST--
  2. Test token_get_all() function : basic functionality
  3. --SKIPIF--
  4. <?php if (!extension_loaded("tokenizer")) print "skip"; ?>
  5. --FILE--
  6. <?php
  7. /* Prototype : array token_get_all(string $source)
  8. * Description : splits the given source into an array of PHP languange tokens
  9. * Source code: ext/tokenizer/tokenizer.c
  10. */
  11. echo "*** Testing token_get_all() : basic functionality ***\n";
  12. // with php open/close tags
  13. $source = '<?php echo "Hello World"; ?>';
  14. echo "-- source string with PHP open and close tags --\n";
  15. var_dump( token_get_all($source) );
  16. // without php open/close tags testing for T_INLINE_HTML
  17. $source = "echo 'Hello World';";
  18. echo "-- source string without PHP open and close tags --\n";
  19. var_dump( token_get_all($source) );
  20. echo "Done"
  21. ?>
  22. --EXPECTF--
  23. *** Testing token_get_all() : basic functionality ***
  24. -- source string with PHP open and close tags --
  25. array(7) {
  26. [0]=>
  27. array(3) {
  28. [0]=>
  29. int(%d)
  30. [1]=>
  31. string(6) "<?php "
  32. [2]=>
  33. int(1)
  34. }
  35. [1]=>
  36. array(3) {
  37. [0]=>
  38. int(%d)
  39. [1]=>
  40. string(4) "echo"
  41. [2]=>
  42. int(1)
  43. }
  44. [2]=>
  45. array(3) {
  46. [0]=>
  47. int(%d)
  48. [1]=>
  49. string(1) " "
  50. [2]=>
  51. int(1)
  52. }
  53. [3]=>
  54. array(3) {
  55. [0]=>
  56. int(%d)
  57. [1]=>
  58. string(13) ""Hello World""
  59. [2]=>
  60. int(1)
  61. }
  62. [4]=>
  63. string(1) ";"
  64. [5]=>
  65. array(3) {
  66. [0]=>
  67. int(%d)
  68. [1]=>
  69. string(1) " "
  70. [2]=>
  71. int(1)
  72. }
  73. [6]=>
  74. array(3) {
  75. [0]=>
  76. int(%d)
  77. [1]=>
  78. string(2) "?>"
  79. [2]=>
  80. int(1)
  81. }
  82. }
  83. -- source string without PHP open and close tags --
  84. array(1) {
  85. [0]=>
  86. array(3) {
  87. [0]=>
  88. int(%d)
  89. [1]=>
  90. string(19) "echo 'Hello World';"
  91. [2]=>
  92. int(1)
  93. }
  94. }
  95. Done