ftp_systype
(PHP 4, PHP 5)
ftp_systype — 返回远程 FTP 服务器的操作系统类型
<h3>说明</h3>
string <strong>ftp_systype</strong>
( resource <code>$ftp_stream</code>
)
<p>
返回远程服务器的系统类型,发生错误则返回 <strong><code>FALSE</code></strong>。
</p>
<h3>参数</h3>
<p>
ftp_stream
FTP 连接资源。
</p>
<h3>返回值</h3>
<p>
返回远程服务器类型,失败返回 <strong><code>FALSE</code></strong>。
</p>
<h3>范例</h3>
<p>
<p><strong>Example #1 <strong>ftp_systype()</strong> 例子</strong></p>
<?php
// ftp connection
$ftp = ftp_connect('ftp.example.com');
ftp_login($ftp, 'user', 'password');
// get the system type
if ($type = ftp_systype($ftp)) {
echo "Example.com is powered by $typen";
} else {
echo "Couldn't get the systype";
}
?>
<p>以上例程的输出类似于:</p>
Example.com is powerd by UNIX
</p>