ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

php – 如何在coldfusion中爆炸来自html表单的数组?

2019-06-12 08:17:51  阅读:170  来源: 互联网

标签:php coldfusion html


我是ColdFusion的新手(截至今天).我不知道服务器使用的是什么版本.我已经阅读了http://help.adobe.com/livedocs/coldfusion/8/htmldocs/help.html?content=Part_4_CF_DevGuide_1.html的一些内容,试图加快速度.

我现在面临的一个重要问题是:这个PHP的ColdFusion等价物是什么?

$numatt = $HTTP_POST_VARS['numatt'];
$att=explode(",",$numatt);
$attcount = count($att);

这是上下文的整个PHP脚本:

<?php
$nument = $HTTP_POST_VARS['nument']; # this is one number. My debug example is 2.
$numatt = $HTTP_POST_VARS['numatt']; # this is an indefinite number of numbers separated by commas. My debug example is 3,5.
$numval = $HTTP_POST_VARS['numval']; # this is one number. My debug example is 6.
echo 'number of entities is: $nument<br><br>';
$att=explode(",",$numatt);
$attcount = count($att);
echo 'the attributes are $numatt, which can be broken down to $att[1] and $att[2].<br><br>';
echo 'there are $numval values for each attribute.<br><br>';
for ($i = 1; $i = $nument; $i++) {
    echo 'this is round $i of the loop. It has $att[$i] attributes.<br><br>';
    for ($j = 1; $j = $att[$i]; $j++) {
        echo 'this is for attribute $j of entity $i.<br><br>';
        for ($k = 1; $k = $numval; $k++) {
            echo 'here is loop $k for $numval values.<br>';
        } #end $k
    } #end $j
} #end $i
?>

基本上我需要将它从PHP翻译成ColdFusion,但是如果我在手册中花了足够的时间,我想我可以弄清楚如何设置循环. (或者我会回来提出更多问题……)对于更好的手册或入门参考的指针也会受到欢迎 – 我刚刚通过Google找到了上面链接的那个.

解决方法:

在ColdFusion中,您可以使用listToArray()函数轻松地将字符串转换为数组.所有表单变量都在表单范围内捆绑在一起.所有url变量都在url范围内捆绑在一起.

<cfoutput>

    <!--- reference variables submitted through a form --->
    <p>name sent through form: #form.firstName#</p>

    <!--- reference variable in url --->
    <p>name in url: #url.firstName#</p>

    <!--- output a list of all fields submitted in a form --->
    <p>all form field names: #form.fieldNames#</p>

    <!--- quickly dump form and url data (for debugging purposes) --->
    <cfdump var="#form#">
    <cfdump var="#url#">

    <!--- output all form field data --->
    <cfloop collection="#form#" item="key">
      Form field name: #key#, form field value: #form[key]#
    </cfloop>

    <!--- converting strings into arrays, default delimiter is comma --->
    <cfset arr1 = listToArray("my,list,is,cool", ",")>

    <cfset arr2 = listToArray("my other list", " ")>

    <cfset arr3 = listToArray("yet:another:list", ":")>

    <!--- how many items in arr1? --->
    #arrayLen(arr1)#

    <!--- loop over arr3 --->
    <cfloop from="1" to="#arrayLen(arr3)#" index="i">
      #arr3[i]#
    </cfloop>

</cfoutput>

CFML使大多数事情变得简单.请记住,如果您不想使用标签,CFML还会提供脚本语法.

标签:php,coldfusion,html
来源: https://codeday.me/bug/20190612/1224361.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有