summaryrefslogtreecommitdiff
path: root/expand.php
diff options
context:
space:
mode:
authorJonas Kohl <gitlab@jonaskohl.de>2024-07-19 16:30:46 +0200
committerJonas Kohl <gitlab@jonaskohl.de>2024-07-19 16:30:46 +0200
commit551fe367342f4c3d4c859f58054c6076b3fe4d69 (patch)
tree93f1bfc2fc0c9db830cabf4df3318f45fc488833 /expand.php
parent170d134f6988450861d23eb02855eafd84a4e071 (diff)
Wrap after 80 cols
Diffstat (limited to 'expand.php')
-rw-r--r--expand.php12
1 files changed, 8 insertions, 4 deletions
diff --git a/expand.php b/expand.php
index 41d4dc7..fb83625 100644
--- a/expand.php
+++ b/expand.php
@@ -4,10 +4,14 @@ define("SRCDIR", realpath(__DIR__ . "/src/"));
$__page = file_get_contents("php://stdin");
$title = "";
-$__page = preg_replace_callback(';<title>(.*?)</title>;i', function(array $matches) use(&$title): string {
- $title = $matches[1];
- return "";
-}, $__page);
+$__page = preg_replace_callback(
+ ';<title>(.*?)</title>;i',
+ function(array $matches) use(&$title): string {
+ $title = $matches[1];
+ return "";
+ },
+ $__page
+);
$page = SRCDIR . "/pages/" . bin2hex(random_bytes(8)) . ".tmp";
file_put_contents($page, $__page);
unset($__page);