17 lines
206 B
PHP
17 lines
206 B
PHP
<?php
|
|
|
|
class Excel_Number
|
|
{
|
|
public $value;
|
|
|
|
function __construct($value)
|
|
{
|
|
$this->value = (int)($value);
|
|
}
|
|
|
|
function getString()
|
|
{
|
|
return $this->value;
|
|
}
|
|
}
|
|
|