Skip to content

Instantly share code, notes, and snippets.

@c9n
Created January 6, 2016 02:57
Show Gist options
  • Save c9n/041dbee754a51ff44a33 to your computer and use it in GitHub Desktop.
Save c9n/041dbee754a51ff44a33 to your computer and use it in GitHub Desktop.
Test isset & is_null
<?php
$a = 'c9n';
/* ----- isset ----- */
$start = microtime(true);
for ($i = 0; $i < 1000 * 1000; $i++) {
isset($a);
}
$end = microtime(true);
echo $end - $start . "\n";
/* ----- is_null ----- */
$start = microtime(true);
for ($i = 0; $i < 1000 * 1000; $i++) {
is_null($a);
}
$end = microtime(true);
echo $end - $start . "\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment