Skip to content

Instantly share code, notes, and snippets.

@toshimaru
Created November 28, 2012 02:56
Show Gist options
  • Save toshimaru/4158748 to your computer and use it in GitHub Desktop.
Save toshimaru/4158748 to your computer and use it in GitHub Desktop.
[PHP]test function
<?php
$test = function ($expect, $actual) {
if ($expect === $actual) {
echo 'OK, ';
} else {
echo "NG expect:{$expect} actual:{$actual} <br>";
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment