1

I have this Data Object value.

Magento\Customer\Model\Data\AttributeMetadata Object
(
 [_data:protected] => Array
 (
 [frontend_input] => boolean
 [input_filter] => 
 [store_label] => Verified Buyer
 [validation_rules] => Array
 (
 )
 [multiline_count] => 0
 [visible] => 1
 [required] => 
 [data_model] => 
 [options] => Array
 (
 )
 [frontend_class] => 
 [user_defined] => 1
 [sort_order] => 90
 [frontend_label] => Verified Buyer
 [note] => 
 [system] => 
 [backend_type] => int
 [is_used_in_grid] => 
 [is_visible_in_grid] => 
 [is_filterable_in_grid] => 
 [is_searchable_in_grid] => 
 [attribute_code] => verified_buyer
 )
)

I converted this to

$array = (array) $customAttr;

But still I am reciving the object

Array
(
 [*_data] => Array
 (
 [frontend_input] => boolean
 [input_filter] => 
 [store_label] => Verified Buyer
 [validation_rules] => Array
 (
 )
 [multiline_count] => 0
 [visible] => 1
 [required] => 
 [data_model] => 
 [options] => Array
 (
 )
 [frontend_class] => 
 [user_defined] => 1
 [sort_order] => 90
 [frontend_label] => Verified Buyer
 [note] => 
 [system] => 
 [backend_type] => int
 [is_used_in_grid] => 
 [is_visible_in_grid] => 
 [is_filterable_in_grid] => 
 [is_searchable_in_grid] => 
 [attribute_code] => verified_buyer
 )
)

I am expecting output like

Array
(
 [frontend_input] => boolean
 [input_filter] => 
 [store_label] => Verified Buyer
 [validation_rules] => Array
 (
 )
 [multiline_count] => 0
 [visible] => 1
 [required] => 
 [data_model] => 
 [options] => Array
 (
 )
 [frontend_class] => 
 [user_defined] => 1
 [sort_order] => 90
 [frontend_label] => Verified Buyer
 [note] => 
 [system] => 
 [backend_type] => int
 [is_used_in_grid] => 
 [is_visible_in_grid] => 
 [is_filterable_in_grid] => 
 [is_searchable_in_grid] => 
 [attribute_code] => verified_buyer
)

Above all is Magento Customer custom attributes data.

Note : I am using REST API

asked Jan 11, 2019 at 10:02

3 Answers 3

2

You can use the method toArray().

\Magento\Customer\Model\Customer $customer;
$customer->toArray();
answered Jan 11, 2019 at 11:01
3
  • Nope, Not working. Commented Jan 11, 2019 at 11:52
  • Have an error log? Commented Jan 11, 2019 at 12:41
  • Thanks for the efforts +1 Commented Mar 15, 2019 at 10:44
1

The simple way you can do it via php function json_encode and json_decode.

$object = 'your_object_variable'
$myArray = json_decode(json_encode($object), true);
print_r($myarray);
answered Jan 12, 2019 at 5:30
1
  • Does it works ? Commented Jan 14, 2019 at 11:22
1

Try like this one:

$data = $this->dataObjectConverter->toFlatArray($Customer, [], \Magento\Customer\Model\Customer::class);
answered Jul 19, 2019 at 12:57

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.