Upgrade to Pro — share decks privately, control downloads, hide ads and more …

PHPでのリーダブルコード/Readable code in PHP

Y-KANOH
March 24, 2022

PHPでのリーダブルコード/Readable code in PHP

Y-KANOH

March 24, 2022
Tweet

More Decks by Y-KANOH

Other Decks in Technology

Transcript

  1. function hoge($startIndex=0, $num=0, $max=10, $min=1) { // ... } hoge(3,

    12, 11); // min にはデフォルト値の 1 が入る hoge(0, 0, 10, 5); // min だけデフォルト値でないものを入れる場合に煩雑 hoge(min:5); // PHP 8.0 ではこのように書ける hoge(startIndex:3, num:12, max:11, min:1); // デフォルト値以外でも引数の意味がわかりやすくなる