<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>PHP代码在线测试运行工具</title>
<style type="text/css">
* {
margin: 0; padding: 0;
}
body {
background-color: #FBF1D3
}
.header {
width:100%; height:60px; text-align:center; font-size:24px; font-weight: bold
}
.header span {
line-height:60px; padding: 0 50px 6px 50px; border-bottom: 1px solid #666
}
.top {
width:100%; height: 40px; color: red;
}
.top .left {
width: calc(50% - 15px); margin-left:10px; padding-top:10px; text-align:left; float:left
}
.top .left button{
margin-left:20px; padding: 2px 10px
}
.top .right {
width: calc(50% - 5px); padding-top:10px; text-align:left; float: right
}
.main {
position: absolute; top: 100px; right: 0; bottom:0; left:0; padding: 0 10px
}
.main .left {
width: calc(50% - 5px); height: 100%; box-sizing: border-box; border:1px solid #666; background: #fff; float: left; overflow: hidden
}
.main .left textarea {
width: 100%; height: 100%; border: 0px solid #333; resize: none
}
.main .middle {
width: 10px; height: 100%; float: left
}
.main .right {
width: calc(50% - 5px); height: 100%; box-sizing: border-box; border:1px solid #666; background: #fff; float: left
}
</style>
</head>
<body>
<div class="header"><span>PHP代码在线测试运行工具</span></div>
<div class="top">
<div class="left">PHP代码<button onclick=btnClick(1)>运行代码(方法1)</button><button onclick=btnClick(2)>运行代码(方法2)</button></div>
<div class="right">运行结果</div>
</div>
<div class="main">
<div class="left"><textarea>$a = 0;
$b= 12;
$c = $a * 2 + $b *4;
if ($a > 0 && $b > 0) echo $c;
else echo "a和b必须大于0";</textarea></div>
<div class="middle"></div>
<div class="right"></div>
</div>
<script type="text/javascript">
function btnClick(tp) {
var data = "type=" + tp + "&code=" + encodeURIComponent(document.querySelector("textarea").value); //
var xhr = null;
if (window.XMLHttpRequest) {
xhr = new XMLHttpRequest();
} else if (window.ActiveXObject) {
xhr = new ActiveXObject("Microsoft.XMLHTTP");
}
xhr.onreadystatechange = function() {
if (xhr.readyState == 4 && xhr.status == 200) {
console.log(xhr.response)
document.querySelector('.main .right').innerHTML = xhr.response;
}
}
xhr.open("POST", "do.php", true);
xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xhr.send(data);
}
</script>
</body>
</html>