评估 userid 为 true

发布于 2025-01-03 01:56:14 字数 118 浏览 0 评论 0原文

我有一个通过电子邮件搜索用户的功能。如果找到用户,该函数将返回用户 ID。否则返回 false。

我如何评估这个看起来像12202436120g1200069971的用户ID为真?

I have a function which searches users by their e-mail. If a user is found, the function returns the userid. Otherwise it returns false.

How may I evaluate this userid which looks like 12202436120g1200069971 to true?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情深如许 2025-01-10 01:56:14
<cfif userid NEQ false>
  // do something
<cfelse>
  // do something else
</cfif>
<cfif userid NEQ false>
  // do something
<cfelse>
  // do something else
</cfif>
情绪操控生活 2025-01-10 01:56:14

如果我理解正确的话,我会做类似的事情:

if(len(userid)){
   //true
}
else{
  //false
}

在 ColdFusion 中 0 为假,任何其他数字(负数或正数)为真。

If I understand correctly I'd do something like:

if(len(userid)){
   //true
}
else{
  //false
}

In ColdFusion 0 is false and any other number (negative or positive) is true.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文