TwistPHP Documentation

login

File path: dist/twist/Core/Utilities/FTP.utility.php
Namespace: Twist\Core\Utilities
Extends: Base

loginLogin to the open FTP connection

Parameters

Name Type Description
$strUsernamestringn/a
$strPasswordstringn/a

Return Values

void — No return information has been documented for this function.

Example

<?php
//Set the variables for the example
$strUsername 'foo';
$strPassword 'foo';

//Call the function login with the example vars
Twist::FTP() -> login($strUsername$strPassword);