Created
March 22, 2016 09:54
-
-
Save nishinoshake/9c12b7132973ad396b40 to your computer and use it in GitHub Desktop.
入力チェック
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 文字列を強制する | |
$name = isset($_POST['name']) && is_string($_POST['name']) ? $_POST['name'] : ''; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment