Skip to content

Instantly share code, notes, and snippets.

@bz0
Created November 19, 2023 02:22
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 bz0/5265e3a32d65ae03c7a78f031e958472 to your computer and use it in GitHub Desktop.
Save bz0/5265e3a32d65ae03c7a78f031e958472 to your computer and use it in GitHub Desktop.
競プロ 関数まとめ(PHP)
<?php
// 入力複数行の取得
function multi_line() {
$input = [];
while ($line = fgets(STDIN)) {
$input[] = trim($line);
}
return $input;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment