Posted by Marco Favero on 09/13/07 08:55
Howewer... bad use of code.
This works:
<?php
$arraymulti['test'][0]= 'testing';
$key=array_keys($arraymulti);
print 'Value key: '.$key[0];
print 'Value: '.$arraymulti['test'][0]."\n";
$list = preg_grep("/what/",$key);
print 'Value: '.$arraymulti['test'][0];
print 'Value Key: '.$key[0];
?>
bye
[Back to original message]
|