Warning: session_start(): open(/var/lib/php/sessions/sess_dp50kh4ek7t3rntnfqpdk3kbe7, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
static boolean find3(S pat, S s) {
return find3(pat, s, null);
}
static boolean find3(S pat, S s, Matches matches) {
ret find3(pat, parse3(s), matches);
}
static boolean find3(S pat, LS toks, Matches matches) {
L tokpat = parse3(pat);
S[] m = find2(tokpat, toks);
//print(structure(tokpat) + " on " + structure(toks) + " => " + structure(m));
if (m == null) false;
if (matches != null) matches.m = m;
true;
}