- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
$multiplier = 1.15;
$allowedLen = 56;
echo
(
(
(
$allowedLen -
(
strlen($resSingle->name) * $multiplier
)
) > 0
) ?
(
(
isset
(
$resSingle->address
[
$allowedLen -
(
strlen($resSingle->name) * $multiplier
)
]
) ?
(
' - ' . substr
(
$resSingle->address , 0 , $allowedLen -
(
strlen($resSingle->name) * $multiplier
)
) .
'...'
) :
(
' - ' . $resSingle->address
)
)
) :
(
''
)
);
Here's my string formatting echo. Name is upper case and address is lowercase. I needed to echo this information, and the rows should be with ~equal length. Enjoy!
Комментарии (18) RSS
Добавить комментарий