1
0
mirror of https://github.com/ZeroDream-CN/PHPMC7 synced 2026-05-20 12:49:53 +08:00

无可奉告

This commit is contained in:
2018-09-10 14:53:00 +08:00
Unverified
parent ae65e82a07
commit 1ab04f0978
87 changed files with 30174 additions and 4 deletions
+8
View File
@@ -0,0 +1,8 @@
<?php
class WebError {
public static function Println($str) {
Header("Content-type: text/html;charset=UTF-8", true, 500);
echo $str;
exit;
}
}