First commit
This commit is contained in:
parent
e501bd72fb
commit
8a604fb915
3 changed files with 4794 additions and 0 deletions
25
make.php
Normal file
25
make.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
$out = fopen('index.php', 'w');
|
||||
|
||||
$php = file_get_contents('server.php');
|
||||
$php = strtr($php, [
|
||||
'__JS_SIZE__' => filesize('webdav.js'),
|
||||
'__CSS_SIZE__' => filesize('webdav.css'),
|
||||
]);
|
||||
|
||||
$php = preg_replace('/\}\s*$/', "\n?>\n", $php);
|
||||
$end = "\n\n<?php } ?>\n";
|
||||
|
||||
$size = strlen($php);
|
||||
$count = substr_count($php, '__PHP_SIZE__');
|
||||
$size -= strlen('__PHP_SIZE__') * $count;
|
||||
$size += strlen((string) $size) * $count;
|
||||
|
||||
$php = str_replace('__PHP_SIZE__', $size, $php);
|
||||
|
||||
fwrite($out, $php);
|
||||
fwrite($out, file_get_contents('webdav.js'));
|
||||
fwrite($out, file_get_contents('webdav.css'));
|
||||
fwrite($out, $end);
|
||||
fclose($out);
|
1792
server.php
Normal file
1792
server.php
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue