Istendiğinde (kullanıcı parolası) verilerini beslemek için özel bir boru oluşturmanıza olanak proc_open hangi kullanın. Özel bir parola boru oluşturmak için yollar linkten yorumlara bakınız.
Update, since you're not able to read.
05-Haziran-2008 de eğlenerek nokta NOSPAMPLEASE nokta com nokta AU snowleopard tarafından yorumun pasajı önce twice belirtilen linkten 02:46. Sadece kendi durumunuza bu uygulamak gerekir.
// Set up the descriptors
$Descriptors = array(
0 => array("pipe", "r"),
1 => array("pipe", "w"),
2 => array("pipe", "w"),
3 => array("pipe", "r") // This is the pipe we can feed the password into
);
// Build the command line and start the process
$CommandLine = $GPGPath . ' --homedir ' . $HomeDir . ' --quiet --batch --local-user "' . $Identity . '" --passphrase-fd 3 --decrypt -';
$ProcessHandle = proc_open( $CommandLine, $Descriptors, $Pipes);
if(is_resource($ProcessHandle)) {
// Push passphrase to custom pipe
fwrite($Pipes[3], $PassPhrase);
fclose($Pipes[3]);