Jump to content

Get index from array key


iSE

Recommended Posts

Guys, I feel really embarrased that I'm stumped by this but unless I'm blind, I can't seem to find a thing in the php manual. How do you get the array index from a key?

 

The problem is I have an array sorted alphabetically by their key's, each key's value is an array of information relating to the key name. However, the client want's a certain key to appear last in the list. I was going to do this by using array_slice to extract the array by the key name, but array_slice expects the key to be long not a string.

 

<?php

$dealerList = VSM::getDealershipList();
$prmDealer  = array_slice($dealerList, 'KEY NAME', 1);
array_push($dealerList, $prmDealer);

?>

Link to comment
https://forums.phpfreaks.com/topic/182671-get-index-from-array-key/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.