|
Posted by Gi on 12/17/18 11:53
Hello,
I'm a new Php user.
I'm trying to use the array functions and would like to ask a suggestion, if
possible.
I wrote the following sample code:
<?php
$test[1]="tizio";
$test[2]="caio";
$test[3]="caio";
print(array_search("caio", $test));
?>
It's a simple array with a command which searches the corresponding key for
the string "caio".
As result I've 2 and not, as I thought 2, 3. Do you know is it possible to
search all the keys associated to the string "caio"? I tried also the
array_keys function but in this case the result has too much information.
I'd like to have as result only 2 and 3.
Pleace accept my apologies for the question and for the trouble.
Really many thanks for the possible suggestions.
Best,
Gi
Navigation:
[Reply to this message]
|