Skip to content

Instantly share code, notes, and snippets.

@pokap
Created June 12, 2013 16:07
Show Gist options
  • Save pokap/5766746 to your computer and use it in GitHub Desktop.
Save pokap/5766746 to your computer and use it in GitHub Desktop.
Notice error with push array on SplFixedArray
<?php
$a = new SplFixedArray(1);
$a[0] = array();
$a[0][] = 'test'; // notice error
// ---------------
$a = new SplFixedArray(1);
$a[0] = array();
$tmp = $a[0];
$tmp[] = 'test';
$a[0] = $tmp;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment