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 编写代码来解决这个问题。
Simple examle:
$input = $_POST['field']; if(strlen($input)> 140) { // Error or substr() }
尝试这个。
function LimitCharacter($data,$limit = 20) { if (strlen($data) > $limit) { return false; } else { return true; } }