forked from insoxin/API
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
insoxin
committed
Feb 26, 2019
1 parent
1bf56ca
commit b9422ff
Showing
2,163 changed files
with
247,409 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<IfModule mod_rewrite.c> | ||
Options +FollowSymlinks | ||
RewriteEngine On | ||
RewriteCond %{REQUEST_FILENAME} !-d | ||
RewriteCond %{REQUEST_FILENAME} !-f | ||
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L] | ||
</IfModule> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
open_basedir=/www/wwwroot/api.isoyu.com/:/tmp/:/proc/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
s3tyroN6daiDpnarfX |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>正在连接服务器...</title> | ||
<style type="text/css"> | ||
::-moz-selection { background: #fff; text-shadow: none; } | ||
::selection { background: #fff; text-shadow: none; } | ||
body { font-family: cursive, NSimSun; background: #000; color: #C0C0C0; font-size: 12pt; } | ||
#errormsg { display: none } | ||
#blink { display: inline; color: #0F0; } | ||
</style> | ||
|
||
</head> | ||
<body> | ||
<div id="echoerror"></div> | ||
<div id="errormsg"> | ||
正在向服务器发起请求....<br> | ||
服务器找不到您所请求的文件或脚本<br> | ||
正在重试#1....<br> | ||
服务器找不到您所请求的文件或脚本 #1<br> | ||
正在重试#2....<br> | ||
服务器找不到您所请求的文件或脚本 #2<br> | ||
正在重试#3....<br> | ||
服务器找不到您所请求的文件或脚本 #3<br> | ||
失败, 未找到 | ||
</div> | ||
<script type="text/javascript"> | ||
var charIndex = -1; | ||
var stringLength = 0; | ||
var inputText; | ||
function writeContent(){ | ||
inputText = document.getElementById('errormsg').innerHTML; | ||
if(charIndex==-1){ | ||
charIndex = 0; | ||
stringLength = inputText.length; | ||
} | ||
var initString = document.getElementById('echoerror').innerHTML; | ||
initString = initString.replace(/<span.*$/gi,""); | ||
|
||
var theChar = inputText.charAt(charIndex); | ||
var nextFourChars = inputText.substr(charIndex,4); | ||
if(nextFourChars=="...."){ | ||
time = 3000; | ||
}else{ | ||
time = 50; | ||
} | ||
if(nextFourChars=='<br>'){ | ||
theChar = '<br>'; | ||
charIndex+=3; | ||
} | ||
initString = initString + theChar + "<span id='blink'>▌</span>"; | ||
document.getElementById('echoerror').innerHTML = initString; | ||
charIndex = charIndex/1 +1; | ||
if(charIndex<=stringLength){ | ||
setTimeout('writeContent(false)',time); | ||
}else{ | ||
document.title = "未找到"; | ||
} | ||
} | ||
writeContent(); | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php //随机输出目录中的图片 | ||
$image_directory = "./uploads/ARU/GIF_L/"; //设定图片目录 | ||
$image_type = array(".jpg",".gif",".png"); //设定图片类型 | ||
header("location:$image_directory./".image_rand_output($image_directory,$image_type).""); | ||
function image_rand_output($image_directory,$image_type) //随机输出图片函数 | ||
{ | ||
$dh = dir($image_directory); | ||
while (false !== ($image = $dh -> read())) | ||
{ | ||
if(in_array(strtolower(strrchr($image,".")),$image_type)) | ||
$image_array[] = $image; | ||
} | ||
$dh -> close(); | ||
$key = array_rand($image_array); | ||
return $image_array[$key]; | ||
} | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php //随机输出目录中的图片 | ||
$image_directory = "./uploads/ARU/GIF_S/"; //设定图片目录 | ||
$image_type = array(".jpg",".gif",".png"); //设定图片类型 | ||
header("location:$image_directory./".image_rand_output($image_directory,$image_type).""); | ||
function image_rand_output($image_directory,$image_type) //随机输出图片函数 | ||
{ | ||
$dh = dir($image_directory); | ||
while (false !== ($image = $dh -> read())) | ||
{ | ||
if(in_array(strtolower(strrchr($image,".")),$image_type)) | ||
$image_array[] = $image; | ||
} | ||
$dh -> close(); | ||
$key = array_rand($image_array); | ||
return $image_array[$key]; | ||
} | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php //随机输出目录中的图片 | ||
$image_directory = "./uploads/ARU/GIF_XL/"; //设定图片目录 | ||
$image_type = array(".jpg",".gif",".png"); //设定图片类型 | ||
header("location:$image_directory./".image_rand_output($image_directory,$image_type).""); | ||
function image_rand_output($image_directory,$image_type) //随机输出图片函数 | ||
{ | ||
$dh = dir($image_directory); | ||
while (false !== ($image = $dh -> read())) | ||
{ | ||
if(in_array(strtolower(strrchr($image,".")),$image_type)) | ||
$image_array[] = $image; | ||
} | ||
$dh -> close(); | ||
$key = array_rand($image_array); | ||
return $image_array[$key]; | ||
} | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php //随机输出目录中的图片 | ||
$image_directory = "./uploads/ARU/PNG_L/"; //设定图片目录 | ||
$image_type = array(".jpg",".gif",".png"); //设定图片类型 | ||
header("location:$image_directory./".image_rand_output($image_directory,$image_type).""); | ||
function image_rand_output($image_directory,$image_type) //随机输出图片函数 | ||
{ | ||
$dh = dir($image_directory); | ||
while (false !== ($image = $dh -> read())) | ||
{ | ||
if(in_array(strtolower(strrchr($image,".")),$image_type)) | ||
$image_array[] = $image; | ||
} | ||
$dh -> close(); | ||
$key = array_rand($image_array); | ||
return $image_array[$key]; | ||
} | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php //随机输出目录中的图片 | ||
$image_directory = "./uploads/ARU/PNG_S/"; //设定图片目录 | ||
$image_type = array(".jpg",".gif",".png"); //设定图片类型 | ||
header("location:$image_directory./".image_rand_output($image_directory,$image_type).""); | ||
function image_rand_output($image_directory,$image_type) //随机输出图片函数 | ||
{ | ||
$dh = dir($image_directory); | ||
while (false !== ($image = $dh -> read())) | ||
{ | ||
if(in_array(strtolower(strrchr($image,".")),$image_type)) | ||
$image_array[] = $image; | ||
} | ||
$dh -> close(); | ||
$key = array_rand($image_array); | ||
return $image_array[$key]; | ||
} | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php //随机输出目录中的图片 | ||
$image_directory = "./uploads/ARU/PNG_XL/"; //设定图片目录 | ||
$image_type = array(".jpg",".gif",".png"); //设定图片类型 | ||
header("location:$image_directory./".image_rand_output($image_directory,$image_type).""); | ||
function image_rand_output($image_directory,$image_type) //随机输出图片函数 | ||
{ | ||
$dh = dir($image_directory); | ||
while (false !== ($image = $dh -> read())) | ||
{ | ||
if(in_array(strtolower(strrchr($image,".")),$image_type)) | ||
$image_array[] = $image; | ||
} | ||
$dh -> close(); | ||
$key = array_rand($image_array); | ||
return $image_array[$key]; | ||
} | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
|
||
ThinkPHP遵循Apache2开源协议发布,并提供免费使用。 | ||
版权所有Copyright © 2006-2016 by ThinkPHP (http://thinkphp.cn) | ||
All rights reserved。 | ||
ThinkPHP® 商标和著作权所有者为上海顶想信息科技有限公司。 | ||
|
||
Apache Licence是著名的非盈利开源组织Apache采用的协议。 | ||
该协议和BSD类似,鼓励代码共享和尊重原作者的著作权, | ||
允许代码修改,再作为开源或商业软件发布。需要满足 | ||
的条件: | ||
1. 需要给代码的用户一份Apache Licence ; | ||
2. 如果你修改了代码,需要在被修改的文件中说明; | ||
3. 在延伸的代码中(修改和有源代码衍生的代码中)需要 | ||
带有原来代码中的协议,商标,专利声明和其他原来作者规 | ||
定需要包含的说明; | ||
4. 如果再发布的产品中包含一个Notice文件,则在Notice文 | ||
件中需要带有本协议内容。你可以在Notice中增加自己的 | ||
许可,但不可以表现为对Apache Licence构成更改。 | ||
具体的协议参考:http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | ||
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | ||
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | ||
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN | ||
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
POSSIBILITY OF SUCH DAMAGE. |
Oops, something went wrong.