我可以在 MAMP 上完美执行代码,但不能在我的 hostgator 服务器上执行。在服务器上,文本会自动转义以防止执行。
<?php
if (@isset($_POST['code'])) {
@$code = $_POST['code'];
@eval($code);
}
?>
<head>
<style>
textarea{
font-family: verdana;
font-size:20px;
color: #2799a0;
}
input[type="submit"] {
width: 200px;
height: 100px;
font-size: 30px;
}
</style>
<title>PHP Playground</title>
</head>
<form action="playground.php" method="POST">
<textarea name="code" cols="100" rows="20"><?php echo $_POST['code']; ?></textarea><br><br>
<input type="submit" value="Execute">
</form>