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.
セキュリティは常に懸念事項であるため、安全かどうかわからないデータをクリーンアップする必要がある場合は、次の方法を使用しても問題ありませんか?
function clean_data($input) { return mysqli_real_escape_string($cxn, htmlspecialchars(strip_tags(trim($input)))); }
それともやってはいけないことですか?