PageRenderTime 43ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/data/php_stdlib/builtins_string.idl.php

http://github.com/facebook/pfff
PHP | 93 lines | 92 code | 0 blank | 1 comment | 0 complexity | 92b950a42b8baf4195c29a86f0068b40 MD5 | raw file
Possible License(s): LGPL-2.1, GPL-2.0, LGPL-2.0, Apache-2.0
  1. <?php
  2. // THIS IS AUTOGENERATED BY builtins_php.ml
  3. function addcslashes($str, $charlist) { }
  4. function stripcslashes($str) { }
  5. function addslashes($str) { }
  6. function stripslashes($str) { }
  7. function bin2hex($str) { }
  8. function hex2bin($str) { }
  9. function nl2br($str) { }
  10. function quotemeta($str) { }
  11. function str_shuffle($str) { }
  12. function strrev($str) { }
  13. function strtolower($str) { }
  14. function strtoupper($str) { }
  15. function ucfirst($str) { }
  16. function ucwords($str) { }
  17. function strip_tags($str, $allowable_tags = "") { }
  18. function trim($str, $charlist = k_HPHP_TRIM_CHARLIST) { }
  19. function ltrim($str, $charlist = k_HPHP_TRIM_CHARLIST) { }
  20. function rtrim($str, $charlist = k_HPHP_TRIM_CHARLIST) { }
  21. function chop($str, $charlist = k_HPHP_TRIM_CHARLIST) { }
  22. function explode($delimiter, $str, $limit = 0x7FFFFFFF) { }
  23. function implode($arg1, $arg2 = null_variant) { }
  24. function join($glue, $pieces = null_variant) { }
  25. function str_split($str, $split_length = 1) { }
  26. function chunk_split($body, $chunklen = 76, $end = "\r\n") { }
  27. function strtok($str, $token = null_variant) { }
  28. function str_replace($search, $replace, $subject, &$count = null) { }
  29. function str_ireplace($search, $replace, $subject, &$count = null) { }
  30. function substr_replace($str, $replacement, $start, $length = 0x7FFFFFFF) { }
  31. function substr($str, $start, $length = 0x7FFFFFFF) { }
  32. function str_pad($input, $pad_length, $pad_string = " ", $pad_type = k_STR_PAD_RIGHT) { }
  33. function str_repeat($input, $multiplier) { }
  34. function wordwrap($str, $width = 75, $wordbreak = "\n", $cut = false) { }
  35. function html_entity_decode($str, $quote_style = k_ENT_COMPAT, $charset = "ISO-8859-1") { }
  36. function htmlentities($str, $quote_style = k_ENT_COMPAT, $charset = "ISO-8859-1", $double_encode = true) { }
  37. function htmlspecialchars_decode($str, $quote_style = k_ENT_COMPAT) { }
  38. function htmlspecialchars($str, $quote_style = k_ENT_COMPAT, $charset = "ISO-8859-1", $double_encode = true) { }
  39. function fb_htmlspecialchars($str, $quote_style = k_ENT_COMPAT, $charset = "ISO-8859-1", $extra = Array()) { }
  40. function quoted_printable_encode($str) { }
  41. function quoted_printable_decode($str) { }
  42. function convert_uudecode($data) { }
  43. function convert_uuencode($data) { }
  44. function str_rot13($str) { }
  45. function crc32($str) { }
  46. function crypt($str, $salt = "") { }
  47. function md5($str, $raw_output = false) { }
  48. function sha1($str, $raw_output = false) { }
  49. function strtr($str, $from, $to = null_variant) { }
  50. function convert_cyr_string($str, $from, $to) { }
  51. function get_html_translation_table($table = 0, $quote_style = k_ENT_COMPAT) { }
  52. function hebrev($hebrew_text, $max_chars_per_line = 0) { }
  53. function hebrevc($hebrew_text, $max_chars_per_line = 0) { }
  54. function setlocale($category, $locale) { func_get_args();}
  55. function localeconv() { }
  56. function nl_langinfo($item) { }
  57. function printf($format) { func_get_args();}
  58. function vprintf($format, $args) { }
  59. function sprintf($format) { func_get_args();}
  60. function vsprintf($format, $args) { }
  61. function sscanf($str, $format) { func_get_args(); }
  62. function chr($ascii) { }
  63. function ord($str) { }
  64. function money_format($format, $number) { }
  65. function number_format($number, $decimals = 0, $dec_point = ".", $thousands_sep = ",") { }
  66. function strcmp($str1, $str2) { }
  67. function strncmp($str1, $str2, $len) { }
  68. function strnatcmp($str1, $str2) { }
  69. function strcasecmp($str1, $str2) { }
  70. function strncasecmp($str1, $str2, $len) { }
  71. function strnatcasecmp($str1, $str2) { }
  72. function strcoll($str1, $str2) { }
  73. function substr_compare($main_str, $str, $offset, $length = 0, $case_insensitivity = false) { }
  74. function strchr($haystack, $needle) { }
  75. function strrchr($haystack, $needle) { }
  76. function strstr($haystack, $needle) { }
  77. function stristr($haystack, $needle) { }
  78. function strpbrk($haystack, $char_list) { }
  79. function strpos($haystack, $needle, $offset = 0) { }
  80. function stripos($haystack, $needle, $offset = 0) { }
  81. function strrpos($haystack, $needle, $offset = 0) { }
  82. function strripos($haystack, $needle, $offset = 0) { }
  83. function substr_count($haystack, $needle, $offset = 0, $length = 0x7FFFFFFF) { }
  84. function strspn($str1, $str2, $start = 0, $length = 0x7FFFFFFF) { }
  85. function strcspn($str1, $str2, $start = 0, $length = 0x7FFFFFFF) { }
  86. function strlen($str) { }
  87. function count_chars($str, $mode = 0) { }
  88. function str_word_count($str, $format = 0, $charlist = "") { }
  89. function levenshtein($str1, $str2, $cost_ins = 1, $cost_rep = 1, $cost_del = 1) { }
  90. function similar_text($first, $second, &$percent = null) { }
  91. function soundex($str) { }
  92. function metaphone($str, $phones = 0) { }
  93. function parse_str($str, &$arr = null) { }