Search results

  1. C

    I want to increment an associative array keys in php?

    <?php // treat this string as an array $str = 'Hello'; // the result array $arr = array(); // incrementor $i = 3; $j = 0; // loop for ($i, $j; $j < strlen($str); $i++, $j++) { $arr[$i] = $str[$j]; } // show result echo '<pre>'; print_r($arr); ?> .hth
Back
Top