Hallo,
foreach ($row as $cellValue) { $trimmedRow[] = trim($cellValue); } $this->\_table[] = $trimmedRow;
Schneller und kürzer:
$this->_table[] = array_map('trim', $row);
Viele Grüße,
Christian
--
Mein "Weblog" [RSS]
Using XSLT to create JSON output (Saxon-B 9.0 for Java)
How to tell the difference between a science fan and a scientist.
Mein "Weblog" [RSS]
Using XSLT to create JSON output (Saxon-B 9.0 for Java)
How to tell the difference between a science fan and a scientist.