Ejemplo n.º 1
0
Variant HHVM_FUNCTION(spliti, const String& pattern, const String& str,
                              int limit /* = -1 */) {
  return php_split(pattern, str, limit, true);
}
Ejemplo n.º 2
0
Variant f_spliti(CStrRef pattern, CStrRef str, int limit /* = -1 */) {
  return php_split(pattern, str, limit, true);
}