| @@ 328-336 (lines=9) @@ | ||
| 325 | * @param $t |
|
| 326 | * @param string $msg |
|
| 327 | */ |
|
| 328 | public static function ext_echoArray($t, $msg = '') |
|
| 329 | { |
|
| 330 | if ('' != $msg) { |
|
| 331 | echo "<hr>{$msg}<hr>"; |
|
| 332 | } |
|
| 333 | ||
| 334 | $txt = print_r($t, true); |
|
| 335 | echo '<pre>Number of items: ' . count($t) . "<br>{$txt}</pre>"; |
|
| 336 | } |
|
| 337 | ||
| 338 | /*****************************************************************/ |
|
| 339 | /** |
|
| @@ 315-323 (lines=9) @@ | ||
| 312 | * @param $t |
|
| 313 | * @param string $msg |
|
| 314 | */ |
|
| 315 | function ext_echoArray($t, $msg = '') |
|
| 316 | { |
|
| 317 | if ('' != $msg) { |
|
| 318 | echo "<hr>{$msg}<hr>"; |
|
| 319 | } |
|
| 320 | ||
| 321 | $txt = print_r($t, true); |
|
| 322 | echo '<pre>Number of items: ' . count($t) . "<br>{$txt}</pre>"; |
|
| 323 | } |
|
| 324 | ||
| 325 | /*****************************************************************/ |
|
| 326 | /** |
|