Skip to content

Instantly share code, notes, and snippets.

@AD7six
Created July 3, 2013 07:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AD7six/5916195 to your computer and use it in GitHub Desktop.
Save AD7six/5916195 to your computer and use it in GitHub Desktop.
<?php
$willWork = array(
'one' => 1,
'two' => 2
);
// sizeof($willWork) === 2
$willNotWork = array(
'one' => 1,
'one' => 2
);
// sizeof($willNotWork) === 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment