We Recommend

Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems
Wicked Cool PHP contains a wide variety of scripts to process credit cards, check the validity of email addresses, template HTML, and serve dynamic images and text.


Posted By

koorb on 04/21/08


Tagged

php element textmate loop last flag


Versions (?)


Flag the last element of an array


Published in: PHP 


  1. $keys = array_keys($array);
  2. if(!empty($keys)) {
  3. $last_key = array_pop($keys);
  4. $array[$last_key]['isLast'] = true;
  5. }

Report this snippet 

You need to login to post a comment.