Loading...
terminal
Bymas
KATSTAT.RU-ТОП РЕЙТИНГ САЙТОВ С ОТДАЧЕЙ
Мобильная 3D онлайн игра Lineage II
WorldByte - Наш хостинг - партнер
Помощь по скриптам
| Вот проблемка
Топ дня:
663531072
f
r
e
e
o
Автор
7 декабря 2014, в 12:58
Music dope
Скрипт вилетаэт Fatal error: Call-time pass-by-reference has been removed in /n/r.php on line 36
f
r
e
e
o
Автор
7 декабря 2014, в 12:59
Music dope
строка 36 $output = runExternal("php -f ".dirname(__FILE__)."/run.php run ".$_POST['cid']." ".$_POST['hosts']." >/dev/null 2>/dev/null &", &$code );
enotik
scam
7 декабря 2014, в 13:01
Шарю в DCMS
смемае...вот это г.Код
f
r
e
e
o
Автор
7 декабря 2014, в 13:06
Music dope
<?php
function runExternal( $cmd, &$code ) {
$descriptorspec = array(
0 => array("pipe", "r"),
1 => array("pipe", "w"),
2 => array("pipe", "w")
);
$pipes= array();
$process = proc_open($cmd, $descriptorspec, $pipes);
$output= "";
if (!is_resource($process)) return false;
fclose($pipes[0]);
stream_set_blocking($pipes[1],false);
stream_set_blocking($pipes[2],false);
$todo= array($pipes[1],$pipes[2]);
while( true ) {
$read= array();
if( !feof($pipes[1]) ) $read[]= $pipes[1];
if( !feof($pipes[2]) ) $read[]= $pipes[2];
if (!$read) break;
$ready= stream_select($read, $write=NULL, $ex= NULL, 2);
if ($ready === false) {
break;
}
foreach ($read as $r) {
$s= fread($r,1024);
$output.= $s;
}
}
fclose($pipes[1]);
fclose($pipes[2]);
$code= proc_close($process);
return $output;
}
$output = runExternal("php -f ".dirname(__FILE__)."/run.php run ".$_POST['cid']." ".$_POST['hosts']." >/dev/null 2>/dev/null &", &$code );
//$output = runExternal("php -f ".dirname(__FILE__)."/run.php run ".$_POST['cid']." ".$_POST['hosts']." &", &$code );
//$output = runExternal("pwd", &$code );
if( $code )
{print "<div>Ошибка выполнения скрипта!</div>";
}
else{
//echo $output;
//exit;
header("Location: index.php");
}
//phpinfo();
?>
Форум
На главную