你如何迭代Input :: post()数据?

时间:2017-09-27 14:28:37

标签: php fuelphp

据我所知{没有参数的Input::post();会返回一个包含特定POST中所有数据的数组。

我这样做$all_input = Input::post();

但是后来我正在迭代Java类似的数组(你是怎么做到的?)

for ($i=0; $i<count($all_input); $i++)
    { 
        if (strpos($all_input[$i], 'something') == true) // ERROR...

但应用程序崩溃时出现错误Undefined offset: 0,我认为这意味着找不到索引?

我也试过添加它无济于事:

    if (!isset($all_input))
    {
        return;
    }

如果是这样,您如何访问数据以迭代它们?我知道它包含数据,因为我可以在浏览器调试期间按下按钮时看到它们,如果我删除该代码。

如果你还没弄清楚我是从Java开发人员那里来的,我刚刚开始学习php,请耐心等待。

2 个答案:

答案 0 :(得分:1)

根据这一点:https://fuelphp.com/docs/classes/input.html#/method_post Input::post();将返回$_POST这是一个关联数组。 这是源代码,因为fuelphp的文档没有完全涵盖它。

/**
 * Fetch an item from the POST array
 *
 * @param   string  $index    The index key
 * @param   mixed   $default  The default value
 * @return  string|array
 */
public static function post($index = null, $default = null)
{
    return (func_num_args() === 0) ? $_POST : \Arr::get($_POST, $index, $default);
}

您需要引用您的输入名称,因此如果您有一个名为'name'的输入,那么您需要参考$all_input['name']。您可以使用array_keys()功能获取密钥。如果在这种情况下使用foreach,也会更好。像:

foreach($all_input as $key => $value) {
    echo 'Input key: ' . $key . ' value: ' . $value;
}

如果您离开$key =>,您将只获得该值,如果您未在foreach中使用它,则可以将其保留。

如果你不想使用foreach,为什么:

$all_input = Input::post();
$keys = array_keys($all_input);
for ($i = 0; $i < count($keys); $i++) {
    if (strpos($all_input[$keys[$i]], 'something') == true) {
        // Do your stuff here.
    }
}

但是我仍然建议尽可能使用foreach,它的开销更少,代码也更清晰。

答案 1 :(得分:0)

这不会起作用,因为你正在处理一个Object(输入)而不是一个数组。

我建议使用foreach循环副a for循环。要验证输入对象的内容/结构,您还可以执行dd()以完整地查看输入对象。

基本上,

$input = Input::post();

foreach($input as $i) {

    echo $i;  //this is a property of the Input Object.  if you have arrays or other objects store inside of it, you may need to go deeper into the oject either with a foreach loop again or by calling the property directly ($i->property)

};