Terminal control/Hiding the cursor: Difference between revisions

Add PHP
m (syntax highlighting fixup automation)
(Add PHP)
Line 367:
<span style="color: #7060A8;">cursor</span><span style="color: #0000FF;">(</span><span style="color: #000000;">UNDERLINE_CURSOR</span><span style="color: #0000FF;">)</span>
<!--</syntaxhighlight>-->
 
=={{header|PHP}}==
<syntaxhighlight lang="php">#!/usr/bin/php
<?php
echo "\e[?25l"; // Cursor hide escape sequence
sleep(5);
echo "\e[?25h"; // Cursor show escape sequence
sleep(5);</syntaxhighlight>
 
=={{header|PicoLisp}}==
1

edit