(PHP 4, PHP 5, PHP 7)
ftp_systype — ����Զ�� FTP �������IJ���ϵͳ����
$ftp_stream
) : string
����Զ�̷�������ϵͳ���ͣ����������� FALSE
��
ftp_stream
FTP ������Դ��
����Զ�̷��������ͣ�ʧ�ܷ��� FALSE
��
Example #1 ftp_systype() ����
<?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 $type\n";
} else {
echo "Couldn't get the systype";
}
?>
�������̵���������ڣ�
Example.com is powerd by UNIX