PHP 函数返回匹配或不匹配
我是 PHP 新手,正在尝试编写一个简单的函数,该函数接受两个变量,如果变量相同则返回字符串“match”,如果变量不同则返回“no_match”。再次接触编程,所以提前致谢!
I am new to PHP and am trying to write a simple function that takes two variables and returns the string "match" if the variables are the same and returns "no_match" if they are different. Again new to programming, so thanks in advance!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不需要函数来执行此操作:
但如果您坚持:
用法:
You don't need a function to do this:
But if you insist:
Usage: