Skip to content

Instantly share code, notes, and snippets.

@icebreaker
Created November 22, 2012 09:30
Show Gist options
  • Save icebreaker/4130200 to your computer and use it in GitHub Desktop.
Save icebreaker/4130200 to your computer and use it in GitHub Desktop.
PHP - clear screen recipe
<?php
function cls()
{
print("\033[2J\033[;H");
}
echo "hello world";
cls();
echo "world";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment