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.
我有个问题。所以我在做 ctf 并且有这个 if 语句。我不知道如何克服它。 if(isset($_POST['var']) && md5($_POST['var']) == NULL) 我所要求的只是一点提示,谢谢。
if(isset($_POST['var']) && md5($_POST['var']) == NULL)
好的,这里有一个提示。
PHP 的md5()函数期望它的参数是一个字符串。
你能想出一些方法来强制这个语句处理不同的数据类型吗?