Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これは簡単だと思ったが、なぜかうまくいかない
public function test($data = null){ }
しかし、関数にデータを送信したい場合、それはnullに変わるので、何も送信しない場合はnullになるようにするにはどうすればよいですか。それ以外の場合は送信したデータです
function test($data = null){ echo $data; } test('abcd'); // output abcd
実際の例を参照してください http://codepad.viper-7.com/Z8T23k
これは、オプションのパラメーター構文に適しているように見えます。何が機能していないかを伝えるには、より詳細な情報が必要です