douhuang3833 2015-03-07 14:52
浏览 48
已采纳

PHP中函数中的非法字符串偏移量

I have this PHP function:

function editDatas($datas, $got, $to_find, $to_replace) {
    foreach($datas['datas'] as $key => $rows) {
        foreach($rows as $number => $row) {
            if($row['id'] == $got) {
                $datas['datas'][$key][$number][$to_find] = $to_replace;
                return $datas;
            }
        }
    }
}

And this call:

$datas = json_decode(file_get_contents('datas.json'), true);  
$datas = editDatas($datas, 'hotel_name', "value", 'My new hotel name');

My json is actually like this:

{
    "datas": [
        {
            "category": "General",
            "id": "hotel_name",
            "type": "input",
            "maxlength": "15",
            "size": "10",
            "label": "Hotel name",
            "help": "Hotel name",
            "value": "Rubi's hotel"
        },
        ...

I'm trying to replace some value in my json.

The problem I'm facing is this error:

Illegal string offset 'id' in line 33

Which is the following in my function:

if($row['id'] == $got) {

I do not understand why because the id is know.

Could you please help me to solve my problem.

Thanks.

  • 写回答

3条回答 默认 最新

  • dongruan6001 2015-03-07 15:08
    关注

    I think your function has one too many loops in it. Try this:

    function editDatas($datas, $got, $to_find, $to_replace) {
            foreach($datas['datas'] as $key => $row) {
                if($row['id'] == $got) {
                    $datas['datas'][$key][$to_find] = $to_replace;
                    return $datas;
                }
            }
        }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测