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.
Twitterにリンクするテキストフィールド投稿の単語制限をしようとしていましたが、Twitterには140単語の文字制限があるため、オンラインに投稿できません。この問題を解決するためにhtmlとphpの両方のコーディングをプログラムする方法を知っている人はいますか?
簡単な例:
$input = $_POST['field']; if(strlen($input)> 140) { // Error or substr() }
これを試して。
function LimitCharacter($data,$limit = 20) { if (strlen($data) > $limit) { return false; } else { return true; } }