在linux 里面编译PHP的时候要加什么参数,以后就可以用PHP的FTP函数?

在linux 里面编译PHP的时候要加什么参数,以后就可以用PHP的FTP函数?

在linux 里面编译PHP的时候要加什么参数,以后就可以用PHP的FTP函数?      
怎么样才能让PHP的FTP函数可以用?安装PHP的时候需要做什么工作?      
我用PHP的FTP函数时出现了这样的错误:
Fatal error: Call to undefined function: ftp_connect()

我的代码是:
<?
if($action=="ftp"){
$username="LINUX中的一个用户名";
$password="用户名的密码";
$server="我的服务器的IP";
$cdir="file/" ;
$conn = ftp_connect($server);
function connect()
{
global $server, $username, $password;

ftp_login($conn, $username, $password);
return $conn;
}

$result = connect();
ftp_chdir($result, $cdir);
$res_code = ftp_put($result,$image_name,$image,FTP_BINARY);
ftp_quit($result);
}
?>      
configure时--enable-ftp 对于php4而言
php3就是
--with-ftp
windows版本已经编译进去了      
要不要指明FTP的路径。。。就--enable-ftp 就可以吗?