TwistPHP Documentation

get

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

getGet a field value

Parameters

Name Type Description
$strFieldstringn/a

Return Values

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

Example

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

//Call the function get with the example vars
$resRecord = new \Twist\Core\Models\Database\Record();
$resRecord -> get($strField);