Jump to content

Recommended Posts

I need to set a deep property if it is undefined or NULL such as shown below:

function setProperty($value, stdClass $config, $p1, $p2, $p3, $p4) {
    if(!isset($config->$p1->$p2->$p3->$p4) || is_null($config->$p1->$p2->$p3->$p4)) {
        $config->$p1->$p2->$p3->$p4=$value;
    }
}

$config=json_decode(json_encode(['a'=>['b'=>['c'=>['x'=>null, 'y'=>123]], 'x'=>123],'x'=>['x'=>123], 'x'=>123]));

setProperty(321, $config, 'a','b','c','x');
setProperty(321, $config, 'a','b','c','y');

But I wish the function to work regardless of property depth and came up with the following.  Recommendations for a cleaner way?  Maybe I should be working with arrays and array_merge_recursive()?

function setProperty($value, stdClass $config, array $properties) {
    $property=array_shift($properties);
    if(!count($properties)){
        if(!isset($config->$property) || is_null($config->$property)) {
            $config->$property=$value;
        }
    }
    else {
        if(empty($config->$property) || !is_object($config->$property)) {
            $config->$property=new \stdClass();
        }
        setProperty($value, $config->$property, $properties);
    }
}

$config=json_decode(json_encode(['a'=>['b'=>['c'=>['x'=>null, 'y'=>123]], 'x'=>123],'x'=>['x'=>123], 'x'=>123]));

setProperty(321, $config, ['a','b','c','x']);
setProperty(321, $config, ['a','b','c','y']);

 

Link to comment
https://forums.phpfreaks.com/topic/307993-setting-deep-object-properties/
Share on other sites

2 minutes ago, ginerjm said:

did you ever consider that having a structure so very deep is possibly a poor design?

Thanks ginerjm.  Good point, however, it is not my design (the objects are the json objects used to configure Highcharts) and realistically they will only be 3 or 4 deep max .   Any recommendations on the best approach?  Thanks

Something cleaner?

isset($config->a->b->c->x) || $config->a->b->c->x = 321;
isset($config->a->b->c->y) || $config->a->b->c->y = 321;

Remember that isset() also covers the case where the value exists but is null.

It's cool to have something that can arbitrarily set properties, but make sure what you have to give up in return is worth it. Here, I don't think you're gaining nearly enough for the sacrifice in readability.

It's not the detection which I have an issue with but how to set them.  Unlike arrays, I cannot just use $config->a->b->c->x=123 if a, b, or c is not set.

Ah yeah, I do remember (now) that isset() unlike array_key_exists() will return false upon null.  Thanks

7 hours ago, requinix said:

I would deal with the data as an array and not an object, and array_replace_recursive.

I actually tried array_merge_recursive but found it did not meet my needs and ended up writing my own version.  Looks like doing so was not needed and array_replace_recursive is the right solutions.  Thanks!

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.