"> // escape an attribute // partial('Include/matsit_incl.php', array( // render a partial with vars // 'matchId' => $id, // )); // // Benefits: e() makes "did I escape this?" answerable at a glance and B5 can // sweep raw `echo $var` -> `echo e($var)` mechanically. partial() gives the // duplicated *_incl.php fragments a single render path with explicit inputs // instead of relying on leaked globals (C4 dedup target). // Escape a value for safe output inside HTML text or a double/single-quoted // attribute. ENT_QUOTES covers both quote styles; UTF-8 matches the charset // sent by bootstrap.php. Null/ints/floats are cast to string first so callers // don't have to guard them. function e($value) { if ($value === null) { return ''; } return htmlspecialchars((string) $value, ENT_QUOTES, 'UTF-8'); } // Render a PHP partial in an isolated scope with only the variables it is // given. $vars keys become local variables inside the partial, so fragments // declare their inputs instead of reaching into page globals. Path is relative // to the project root (the directory above Include/). function partial($path, $vars = array()) { $full = __DIR__ . '/../' . ltrim($path, '/'); if (!is_file($full)) { error_log('partial(): missing file -- ' . $full); return; } extract($vars, EXTR_SKIP); include $full; }
Löydettiin 10 replaytä.
| Pelaaja1 | Pelaaja2 | Map | Liiga | DL | Lisätty | Lisääjä | Lataa | |
|---|---|---|---|---|---|---|---|---|
shAsur |
xrb |
Metalopolis | Custom | 486 | 2011/03/16 | xrb | ![]() | |
Pweaks |
xrb |
Metalopolis | Custom | 520 | 2011/03/16 | xrb | ![]() | |
xrb |
Namutin |
GSTL GSL TerminusRE | Custom | 533 | 2011/03/16 | xrb | ![]() | |
xrb |
Zumbo |
GSTL GSL Tal'Darim Altar | Custom | 556 | 2011/03/ 9 | Zumbo_ | ![]() | |
xrb |
Pweaks |
GSTL GSL Tal'Darim Altar | Custom | 487 | 2011/03/ 9 | xrb | ![]() | |
xrb |
Mammel |
Xel'Naga Caverns | Custom | 517 | 2011/02/22 | xrb | ![]() | |
Opa |
xrb |
Xel'Naga Caverns | Custom | 581 | 2011/02/22 | Emoquit | ![]() | |
Zyrk |
xrb |
GSTL GSL TerminusRE | 587 | 2011/02/15 | xrb | ![]() | ||
Ike |
xrb |
GSL Tal'Darim Altar | Custom | 555 | 2011/02/ 1 | xrb | ![]() | |
Lehmä |
xrb |
Steppes of War | Custom | 583 | 2010/10/ 9 | xrb | ![]() |