Разбил файл exceltable на классы

This commit is contained in:
origami11 2017-02-17 17:08:18 +03:00
parent b26e521657
commit 7ce493414e
5 changed files with 135 additions and 132 deletions

View file

@ -1,7 +1,5 @@
<?php
require_once 'tools/string.php';
class Database_PDOStatement extends PDOStatement implements IteratorAggregate
{
protected $cursorPos = 0;
@ -88,7 +86,7 @@ class Database_PDOStatement extends PDOStatement implements IteratorAggregate
}
function getArray($name) {
return strToArray($this->fields[$name]);
return Tools_String::strToArray($this->fields[$name]);
}
function getRecordCount() {