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.
このファイル名の種類を許可したい:
A ~ Z 文字 a ~ z 文字 1 ~ x 数字 特殊文字: "(" ")" "-"
preg_match ルールで私を助けることができれば、私は試みましたが成功しませんでした。
<?php $filename = "A-("; if(preg_match("/^[A-Za-z0-9-\(\)]+$/", $filename)) { echo "matched"; }