Skip to content

Instantly share code, notes, and snippets.

@shinderuman
Last active July 7, 2021 13:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shinderuman/1a5e3546ddc17e97f230eb84d756fc05 to your computer and use it in GitHub Desktop.
Save shinderuman/1a5e3546ddc17e97f230eb84d756fc05 to your computer and use it in GitHub Desktop.
<?php
echo '┏┷┓', PHP_EOL;
for($i = 0;$i < mb_strlen($argv[1]);$i++) {
echo sprintf('┃%s┃', mb_substr(str_replace('ー', '|', $argv[1]), $i, 1)), PHP_EOL;
}
echo '┗━┛', PHP_EOL;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment