- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Laravel,但这不应该在这个问题中发挥作用:
我收到错误:
Undefined index: AutoID
在此:
dump($row); // outputting assoc array on screen
$id = $row['AutoID']; // getting error here
这是数组输出的样子:
array:8 [▼
"AutoID" => "6"
"Numurs" => "XXXX"
"Auto" => "Opel Astra"
"IzlaidumaGads" => "2007"
"BakasTilpums" => "52.00"
"KontaktiID" => "41"
"Piezimes" => "NULL"
"Slegts" => "1"
]
如您所见 - 数组以索引“AutoID”开头。有谁知道为什么会发生这种情况?
代码从 foreach 循环中删除,但 2 行实际上是相互跟随的,并且代码中的任何地方都没有修改 $row。
此外,如果我尝试使用例如 $row['Auto'] - 没有错误
完整代码:
private function storeCars($arrAuto) {
$idAssoc = [];
foreach ($arrAuto as $row) {
$car = new Car;
$car->title = $row['Auto'];
$car->plate_number = $row['Numurs'];
$car->year = (int)$row['IzlaidumaGads'];
$car->odometer = 0;
$car->tank_size = (float)$row['BakasTilpums'];
$car->user_id = (int)$row['KontaktiID'];
$car->deleted_at = $row['Slegts'] === '1' ? \Carbon\Carbon::now()->toDateTimeString() : null;
$car->fuel_usage = 0;
$car->save();
dump($row);
$id = $row['AutoID'];
$idAssoc[$id] = $car->id;
}
return $idAssoc;
}
完整数组 $arrAuto 的转储:https://pastebin.com/embed_js/taLjWgVy
我手动隐藏了“Numurs”,因为那是实际汽车的车牌号
解决方法:
正如您在接受的答案中看到的那样:我有一些乱七八糟的字符和索引实际上是这样的:“[?]AutoID”。
我通过仅从我的数组中收集值并使用存储在“[?]AutoID”下的第 n 个值来解决这个问题
最佳答案
当我将数组复制到 phptester.net 时,我在“AutoID”前面得到了一些奇怪的字符。有一些隐藏的角色把事情搞砸了。
编辑:根据要求改进答案
关于PHP: undefined index !但它被定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49357547/
我只是有一个更琐碎的问题。 为什么undefined == undefined 返回true,而undefined >= undefined 为false? undefined 等于 undefine
用PHP 7.2编写套接字服务器。根据Firefox 60中的“网络”选项卡,服务器的一些HTTP响应的第一行随机变为undefined undefined undefined。因此,我尝试记录套接字
在 JavaScript 中这是真的: undefined == undefined 但这是错误的: undefined <= undefined 起初我以为<=运算符包含第一个,但我猜它试图将其转换
在回答这个问题 (Difference between [Object, Object] and Array(2)) 时,我在 JavaScript 数组中遇到了一些我以前不知道的东西(具有讽刺意味的
来自https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Array/of , Note: thi
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
当我添加 到我的 PrimeFaces Mobile 页面,然后我在服务器日志中收到以下警告 WARNING: JSF1064: Unable to find or serve resource, u
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我是一名优秀的程序员,十分优秀!