Votes
For: 0 (0%)
Against: 0 (0%)
Total: 0
March 4, 2010 08:02 AM
Panucci
If you expand an array only the first 32 values are displayed. Also there is no hint that there are more values inside the array. «The protocol allows the changing of this value and it has also ways of fetching more elements "per-page".» http://twitter.com/derickr/statuses/9947187143
example.php:
<?php
$var = array();
for ($i = 1; $i < 40; $i++) {
$var[$i] = $i;
}
xdebug_break();
echo count($var);
?>
example.php:
<?php
$var = array();
for ($i = 1; $i < 40; $i++) {
$var[$i] = $i;
}
xdebug_break();
echo count($var);
?>
December 7, 2015 07:00 AM
Robert
On December 7, 2015 07:00 AM, Robert changed:
- Status from "Unconfirmed" to "Closed"
- Resolution from "Open" to "Fixed"