我怎样才能使这个 PHP else 语句起作用?
<?php if (!empty($_GET['type']))
{
echo str_replace(" ", "", strtolower(htmlspecialchars($_GET['type'])));
} ?>
我希望当类型变量为“Hello World”时返回“helloworld”,并且效果很好。但是,我试图添加一个 else 语句,例如,如果输入为空,则返回“无效”。我该怎么做?
<?php if (!empty($_GET['type']))
{
echo str_replace(" ", "", strtolower(htmlspecialchars($_GET['type'])));
} ?>
I want this to return 'helloworld' when the type variable is 'Hello World' and this works perfectly. However, I'm trying to add an else statement, which, for example, returns 'invalid' if the input is empty. How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你的意思是?
you mean?
首先格式化你的代码。
第二,给你。
First of all format your code.
Second, here you go.