Разбил файл exceltable на классы
This commit is contained in:
parent
b26e521657
commit
7ce493414e
5 changed files with 135 additions and 132 deletions
17
src/Excel/Number.php
Normal file
17
src/Excel/Number.php
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
class Excel_Number
|
||||
{
|
||||
public $value;
|
||||
|
||||
function __construct($value)
|
||||
{
|
||||
$this->value = intval($value);
|
||||
}
|
||||
|
||||
function getString()
|
||||
{
|
||||
return $this->value;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue