isCell
Checks whether the specified cell is stored in the database.
Parameters
- $cell - (string) the cell coordinate (e.g. 'B1')
Return value
- (string or false) the object of the specified cell. if this cell is stored in the database. If it's not, returns false.
Example
$sh = new SpreadSheet($res, "1", $db_prefix);
$cell = $sh->isCell("B2");
Back to top