smarty中如何检查foreach索引是整数还是字符串?

发布于 2024-11-28 05:34:13 字数 184 浏览 0 评论 0原文

smarty中如何检查foreach索引是整数还是字符串?

<?php
$arr = array(9 => 'Tennis', 3 => 'Swimming', 8 => 'Coding');
$smarty->assign('myArray', $arr);
?>

how to check foreach index is integer or string in smarty?

<?php
$arr = array(9 => 'Tennis', 3 => 'Swimming', 8 => 'Coding');
$smarty->assign('myArray', $arr);
?>

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

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

发布评论

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

评论(1

温柔戏命师 2024-12-05 05:34:13

您能否举个例子来说明为什么您需要知道这一点?

一般来说,您可以使用 PHP 函数 is_stringis_integer 来检测类型。

还可以使用 {php}{/php} 在 Smarty 模板中使用 PHP 代码。

Could you post an example on why you need to know that?

In general, you can use the PHP functions is_string and is_integer to detect types.

Also use {php}{/php} to use PHP code inside the Smarty templates.

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