update : 2015.11.03
php.shukuma.com검색:
|
passthru(PHP 4, PHP 5, PHP 7) passthru — Execute an external program and display raw output 설명
void passthru
( string
$command
[, int &$return_var
] )
The passthru() function is similar to the
exec() function in that it executes a
인수
반환값값을 반환하지 않습니다. 주의Warning
사용자가 입력한 데이터를 이 함수로 넘길 때는, escapeshellarg()나 escapeshellcmd()를 이용하여, 사용자가 위험한 명령을 실행하는 조작을 하지 못하게 해야 합니다.
Warning
안전 모드에서 명령어는 escapeshellcmd()로 회피처리됩니다. 그러므로, echo y | echo x는 echo y \| echo x가 됩니다. 참고
|