TwistPHP Documentation

_timeout

File path: dist/twist/Core/Controllers/Base.controller.php
Namespace: Twist\Core\Controllers
Extends:

_timeoutSet the timeout for the current page (Some pages may have allot to do so this can be done per page).

Parameters

Name Type Description
[$intTimeout = 30]integern/a

Return Values

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

Example

<?php
//Set the variables for the example
$intTimeout 30;

//Call the function _timeout with the example vars
$resBase = new \Twist\Core\Controllers\Base();
$resBase -> _timeout($intTimeout);