مثال
الحصول على نوع نظام خادم FTP:
<?php
// connect and login to FTP server
$ftp_server = "ftp.example.com";
$ftp_conn = ftp_connect($ftp_server) or
die("Could not connect to $ftp_server");
$login
= ftp_login($ftp_conn, $ftp_username, $ftp_userpass);
// get system
type
if ($type = ftp_systype($ftp_conn))
{
echo
"System type is: $type";
}
else
{
echo
"Could not get system type.";
}
// close connection
ftp_close($ftp_conn);
?>
الناتج يمكن أن ننظر بشيء من هذا القبيل:
System type is: UNIX
تعريف والاستخدام
و ftp_systype() الدالة بإرجاع معرف نوع نظام خادم FTP.
بناء الجملة
ftp_systype( ftp_connection );
معامل | وصف |
---|---|
ftp_connection | مطلوب. يحدد اتصال FTP لاستخدام |
تفاصيل تقنية
قيمة الإرجاع: | إرجاع نوع النظام على النجاح، أو FALSE على الفشل |
---|---|
صفحة PHP: | 4+ |
<PHP FTP المرجعي