phplibrary/src/Excel/Number.php

17 lines
207 B
PHP

<?php
class Excel_Number
{
public $value;
function __construct($value)
{
$this->value = intval($value);
}
function getString()
{
return $this->value;
}
}