Google\Spreadsheet\Worksheet::getColCount PHP Метод

getColCount() публичный Метод

Get the number of columns in the worksheet
public getColCount ( ) : integer
Результат integer
    public function getColCount()
    {
        $result = $this->xml->xpath('gs:colCount');
        return (int) $result[0]->__toString();
    }