0
<?php
_e('<input type="radio" name="%1$s" id="%2$s" value="yes" data-required="%1$s">', $support_input_name, $support_input_id);
_e('<label for="%1$s">%2$s</label>', $support_input_id, u('yes_text'));
?>
ラジオボタンの名前またはIDとして%2
があるとはどういう意味ですか? (これは私のコードではありませんが、いくつか修正する必要があります)選択したラジオボタンの結果を取得したいのですが、その理由から私はラジオボタンの名前が必要です。htmlタグ属性に%がPHPに含まれているとはどういう意味ですか?
関数からコードを共有する_e –