getValue
Returns the value of the specified cell.
Parameters
- $cell - (string) the cell coordinate (e.g. 'B1')
Return value
- (string or false) the value of the specified cell, if such a cell is stored in the database. If it's not, returns false.
Example
$sh = new SpreadSheet($res, "1", $db_prefix);
$value = $sh->getValue("B2");
See also: setValue, getCalculatedValue
Back to top