Skip to content

Instantly share code, notes, and snippets.

@kisildev
Created March 18, 2019 12:46
Show Gist options
  • Save kisildev/4a08f528ba9ae2d89d9b5f26f5ac5513 to your computer and use it in GitHub Desktop.
Save kisildev/4a08f528ba9ae2d89d9b5f26f5ac5513 to your computer and use it in GitHub Desktop.
Once string display
//Once string display
function once_str($string = '') {
static $foo_called = false;
if ($foo_called) return;
$foo_called = true;
echo $string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment