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.
我只是在阅读一些代码,我遇到了:
form method='post' input type='hidden' name='input' value='%s'
%s是什么意思?我试过谷歌搜索,但我无法得到这个答案。
%s 很可能意味着一个字符串。有点像占位符或变量。
在某些语言中,您可以编写如下内容:
string name = "Joe"; printf("Hi %s", name);
这将打印出:“嗨乔”。
%s用于称为“变量插值”的编程技术。
%s
它将在程序稍后的某处被字符串替换