HTMLС????????PHP????C++
???????????? ???????[ 2014/9/9 11:27:06 ] ??????????????? NET
??????????????????????????? test ????У???????????????????
????1. cpp.html
<!DOCTYPE html>
<html>
<head>
<title>C++????</title>
</head>
<body>
<form method="post" action="cpp.php">
<div>
<p>?????????????????</p>
<input type="text" name="arr" size="20" />
<input type="submit" value="???" />
</div>
</form>
</body>
</html>
????2. cpp.php
<?php
$arr = $_POST['arr'];
if(empty($arr)){
echo "You didn't enter any arguments.";
}
else{
$command = " test " . escapeshellcmd($arr);
$return = passthru($command);
}
?>
??????????? test.cpp ????????????к???????? test.exe ???????????????????test??????£?
#include <iostream>
#include <stdio.h>
using namespace std;
int main(int argc?? char* argv[])
{
cout<<endl<<"You passed "<<argc-1<<" arguement"<<(argc-1==1?"":"s")<<"."<< endl;
cout<<(argc-1==1?"This":"These")<<"arguement"<<(argc-1==1?"":"s")<<" "<<(argc-1==1?"is":"are")<<":"<< endl << endl;
for (int i = 1; i<argc;i++)
cout<<argv[i]<<endl;
return 0;
}
??????
???·???
??????????????????
2023/3/23 14:23:39???д?ò??????????
2023/3/22 16:17:39????????????????????Щ??
2022/6/14 16:14:27??????????????????????????
2021/10/18 15:37:44???????????????
2021/9/17 15:19:29???·???????·
2021/9/14 15:42:25?????????????
2021/5/28 17:25:47??????APP??????????
2021/5/8 17:01:11