1--TEST-- 2Testing ftp_chmod returns file mode 3--CREDITS-- 4Rodrigo Moyle <eu [at] rodrigorm [dot] com [dot] br> 5#testfest PHPSP on 2009-06-20 6--SKIPIF-- 7<?php 8require 'skipif.inc'; 9?> 10--FILE-- 11<?php 12require 'server.inc'; 13 14$ftp = ftp_connect('127.0.0.1', $port); 15if (!$ftp) die("Couldn't connect to the server"); 16ftp_login($ftp, 'user', 'pass'); 17 18var_dump(ftp_chmod($ftp, 0644, 'test.txt')); 19?> 20--EXPECT-- 21int(420) 22