Warning: session_start(): open(/var/lib/php/sessions/sess_b3h5a59eu7thjdru517u5i2jdq, 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 A optParam(ThreadLocal tl, A defaultValue) {
ret optPar(tl, defaultValue);
}
static A optParam(ThreadLocal tl) {
ret optPar(tl);
}
static A optParam(O[] opt, S name, A defaultValue) {
if (!even(l(opt))) fail("Odd parameter length");
for (int i = 0; i < l(opt); i += 2)
if (eq(opt[i], name))
ret (A) opt[i+1];
ret defaultValue;
}
sO optParam(O[] opt, S name) {
ret optParam(opt, name, null);
}