mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-28 14:32:38 +03:00
11 lines
239 B
PHP
Executable File
11 lines
239 B
PHP
Executable File
<?php
|
|
$result = "";
|
|
$Content = $_POST['input1'];
|
|
$ereg='/\n/';
|
|
$arr_str = preg_split($ereg,$Content);
|
|
foreach($arr_str as $value){
|
|
$result = ` echo $value | nc 161.64.89.129 1986`;
|
|
echo $result.'<br>';
|
|
}
|
|
?>
|