Exemplo n.º 1
0
 public static bool mb_parse_str(Context ctx, string encoded_string)
 {
     UriUtils.ParseQuery(encoded_string, ctx.Globals.AddVariable);
     return(true);
 }
Exemplo n.º 2
0
 public static bool mb_parse_str(string encoded_string, out PhpArray array)
 {
     array = new PhpArray();
     UriUtils.ParseQuery(encoded_string, array.AddVariable);
     return(true);
 }