?¡ëPNG
IHDR ? f ??C1 sRGB ??¨¦ gAMA ¡À?¨¹a pHYs ? ??o¡§d GIDATx^¨ª¨¹L¡±¡Âe¡ÂY?a?("Bh?_¨°???¡é¡ì?q5k?*:t0A-o??£¤]VkJ¡éM??f?¡À8\k2¨ªll¡ê1]q?¨´???T
Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
in /home/user1137782/www/china1.by/classwithtostring.php on line 86
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 213
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 214
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 215
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 216
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 217
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 218
# function zfsession {
# Change or list the sessions for the current zftp connection.
emulate -L zsh
[[ $curcontext = :zf* ]] || local curcontext=:zfsession
local opt opt_l opt_v opt_o opt_d hadopts
while getopts ":lovd" opt; do
[[ $opt = "?" ]] && print "zfsession: bad option: -$OPTARG" >&2 && return 1
eval "opt_$opt=1"
hadopts=1
done
(( OPTIND > 1 )) && shift $(( OPTIND - 1 ))
if [[ $# -gt 1 || (( -n $hadopts && -z $opt_d ) && $# -gt 0 ) ]]
then
print "Usage: zfsession ( [ -lvod ] | session )" 1>&2
return 1
fi
if [[ -n $opt_v ]]; then
local sess
for sess in $(zftp session); do
print -n "${(r.15.. ..:.)sess}\t${zfconfig[lastloc_$sess]:-not connected}"
if [[ $sess = $ZFTP_SESSION ]]; then
print " *"
else
print
fi
done
elif [[ -n $opt_l ]]; then
zftp session
fi
if [[ -n $opt_o ]]; then
if [[ $zfconfig[lastsession] != $ZFTP_SESSION ]]; then
local cursession=$ZFTP_SESSION
zftp session $zfconfig[lastsession]
zfconfig[lastsession]=$cursession
print $ZFTP_SESSION
else
print "zfsession: no previous session." >&2
return 1
fi
fi
if [[ -n $opt_d ]]; then
local del=${1:-$ZFTP_SESSION} key
key=${zfconfig[fcache_$del]}
[[ -n $key ]] && unset $key
for key in fcache lastloc lastdir curdir otherdir otherargs lastuser; do
unset "zfconfig[${key}_${del}]"
done
zftp rmsession $del
return
fi
[[ -n $hadopts ]] && return $stat
if [[ $# = 0 ]]; then
print $ZFTP_SESSION
return
fi
local oldsession=${ZFTP_SESSION:-default}
zftp session $1
if [[ $ZFTP_SESSION != $oldsession ]]; then
zfconfig[lastsession]=$oldsession
zftp_chpwd
fi
# }