Skip to content
Advertisement

unable to create object in php and add key/value pair

I am trying to create an object in PHP and add a key value pair consisting of an email address for the key and an empty array for the value. It is not working. Here is what I’ve tried.

JavaScript

I thought this would produce $obj = {abc@gmail.com:[]} but it appears blank

Advertisement

Answer

You have a Parse error: syntax error here:

JavaScript

However, since it’s an object and not an array, use a property. Curly braces {} needed since it’s not a valid variable name (not recommended):

JavaScript

Or create an array and cast it to an object:

JavaScript

Both yield:

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement