58 if ( $mode[0] ==
'r' ) {
59 $options =
'e -bd -so';
60 } elseif ( $mode[0] ==
'w' ) {
61 $options =
'a -bd -si';
65 $arg = Shell::escape( $this->stripPath(
$path ) );
66 $command =
"7za $options $arg";
69 $command .=
' 2>/dev/null';
72 $this->stream = popen( $command, $mode[0] );
73 return ( $this->stream !==
false );