RE: [PHP] Change 'key' names of an associative array.

2001-05-15 Thread Altunergil, Oktay

Yes. But I want to change the name of the key, not the value. Plus I want to
be able to do this without creating an extra key/value pair for each
conversion I do.

oktay

-Original Message-
From: Jack Dempsey [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 15, 2001 4:22 PM
To: Altunergil, Oktay; [EMAIL PROTECTED]
Subject: RE: [PHP] Change 'key' names of an associative array.


have you tried http://www.php.net/manual/en/function.strtoupper.php

-jack

-Original Message-
From: Altunergil, Oktay [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 15, 2001 4:15 PM
To: [EMAIL PROTECTED]
Subject: [PHP] Change 'key' names of an associative array.



I have been trying to convert a MySQL application to Oracle. Oracle needs
the field names to be upper case.
For this reason even if I can fetch the result row, I can't access it by
$row[name] because I have to do
$row[NAME].


Is there a way to change the the key name to upper case, without making a
copy.? (I mean without creating another array key with the same name in
upper case)

Thanks.

Oktay Altunergil

-- 
PHP General 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]


-- 
PHP General 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]




RE: [PHP] Change 'key' names of an associative array.

2001-05-15 Thread Mark Maggelet

reset($array);
while(list($key,$value)=each($array)){
$array[strtoupper($key)]=$value;
unset $array[$key];
}

On Tue, 15 May 2001 16:19:41 -0400, Altunergil, Oktay
([EMAIL PROTECTED]) wrote:
Yes. But I want to change the name of the key, not the value. Plus I
want to
be able to do this without creating an extra key/value pair for each
conversion I do.

oktay

-Original Message-
From: Jack Dempsey [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 15, 2001 4:22 PM
To: Altunergil, Oktay; [EMAIL PROTECTED]
Subject: RE: [PHP] Change 'key' names of an associative array.


have you tried http://www.php.net/manual/en/function.strtoupper.php

-jack

-Original Message-
From: Altunergil, Oktay [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 15, 2001 4:15 PM
To: [EMAIL PROTECTED]
Subject: [PHP] Change 'key' names of an associative array.



I have been trying to convert a MySQL application to Oracle. Oracle
needs
the field names to be upper case.
For this reason even if I can fetch the result row, I can't access
it by
$row[name] because I have to do
$row[NAME].


Is there a way to change the the key name to upper case, without
making a
copy.? (I mean without creating another array key with the same name
in
upper case)

Thanks.

Oktay Altunergil

--
PHP General 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: php-list-
[EMAIL PROTECTED]


--
PHP General 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: php-list-
[EMAIL PROTECTED]



--
PHP General 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]