5 lines
101 B
PHP
5 lines
101 B
PHP
<?php
|
|
function print_c($last, $current) {
|
|
echo str_repeat( chr(8), strlen( $last ) ) . $current;
|
|
}
|
|
|