TwistPHP Documentation

getInfo

File path: dist/twist/Core/Models/Settings.model.php
Namespace: Twist\Core\Models
Extends:

getInfoGet all information that is associated with the provided key, is the key does not exists NULL will be returned.

Parameters

Name Type Description
$strKeystringn/a

Return Values

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

Example

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

//Call the function getInfo with the example vars
$resSettings = new \Twist\Core\Models\Settings();
$resSettings -> getInfo($strKey);