예제 #1
0
파일: app_check.php 프로젝트: csbill/csbill
function echo_title($title, $style = null)
{
    $style = $style ?: 'title';
    echo PHP_EOL;
    echo_style($style, $title . PHP_EOL);
    echo_style($style, str_repeat('~', strlen($title)) . PHP_EOL);
    echo PHP_EOL;
}
예제 #2
0
파일: check.php 프로젝트: Dren-x/mobit
function echo_block($style, $title, $message)
{
    $message = ' ' . trim($message) . ' ';
    $width = strlen($message);
    echo PHP_EOL . PHP_EOL;
    echo_style($style, str_repeat(' ', $width) . PHP_EOL);
    echo_style($style, str_pad(' [' . $title . ']', $width, ' ', STR_PAD_RIGHT) . PHP_EOL);
    echo_style($style, str_pad($message, $width, ' ', STR_PAD_RIGHT) . PHP_EOL);
    echo_style($style, str_repeat(' ', $width) . PHP_EOL);
}