ID: 13772
Updated by: derick
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Bogus
Bug Type: Arrays related
Operating System: debian gnu/linux 2.2
PHP Version: 4.0.6
New Comment:
Accessing the first element works just fine. Try asking on the
[EMAIL PROTECTED] mailinglist for support.
Derick
Previous Comments:
------------------------------------------------------------------------
[2001-10-20 04:22:53] [EMAIL PROTECTED]
I have an array
$this->sbx[mch]
wich print_r function give me back so in this way:
Array
(
[0] => ~*
)
so I have one element. I have a function
give_string($i){
$value = $this->sbx[mch][$i];
return ($value);
}
that returns back only values from the second one ( [1], [2] ecc.)
I had to solve this way
function give_string($i){
if ($i == 0 ){
$t = each ($this->sbx[mch]);
$value = $t["value"];
reset($this->sbx[mch]);
}
else {
$value = $this->sbx[mch][$i];
}
}
Anyone met this problem?
Thanks and goodbye!
------------------------------------------------------------------------
Edit this bug report at http://bugs.php.net/?id=13772&edit=1
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]