补充一点,这是在运行64位Linux操作系统的php 5.3.5盒子上……
我还没有在其他版本上测试过。
但在php错误列表中对此有很多噪音。
(PECL ssh2 >= 0.9.0)
ssh2_sftp_stat — 获取远程文件系统的文件状态
有关可能返回的值的详细信息,请参阅 stat() 的文档。
示例 #1 通过SFTP获取文件状态
<?php
$connection = ssh2_connect('shell.example.com', 22);
ssh2_auth_password($connection, 'username', 'password');
$sftp = ssh2_sftp($connection);
$statinfo = ssh2_sftp_stat($sftp, '/path/to/file');
$filesize = $statinfo['size'];
$group = $statinfo['gid'];
$owner = $statinfo['uid'];
$atime = $statinfo['atime'];
$mtime = $statinfo['mtime'];
$mode = $statinfo['mode'];
?>
补充一点,这是在运行64位Linux操作系统的php 5.3.5盒子上……
我还没有在其他版本上测试过。
但在php错误列表中对此有很多噪音。