- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
function getStringSizes($width = NULL, $height = NULL, $depth = NULL, $unit = NULL)
{
if (!$width && !$height && !$depth)
return NULL;
$strResult = '';
if ($width)
$strResult .= $width;
if ($height) {
if (!empty($strResult))
$strResult .= ' x ';
$strResult .= $height;
}
if ($depth) {
if (!empty($strResult))
$strResult .= ' x ';
$strResult .= $depth;
}
if ($unit)
$strResult .= ' ' . $unit;
return $strResult;
}