473,662 Members | 2,596 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Accessing stdClass object vars

Hi,

I have the following object, I need to extract the SysMessage
property.

stdClass Object ( [UnknownConsignm ent] =stdClass Object
( [SysMessage] =Your consignment could not be found on our
system ) )

I could do this:
$object->UnknownConsign ment->SysMessage

However, depending on the condition, the "UnknownConsign ment" property
might be called something else.
Therefore, I need a solution, something like an array:
$object->[0]->SysMessage

Thanks in advance!

Mar 1 '07 #1
5 53861
get_object_vars will actually give you an array of properties an object have

Hendri

JamesG wrote:
Hi,

I have the following object, I need to extract the SysMessage
property.

stdClass Object ( [UnknownConsignm ent] =stdClass Object
( [SysMessage] =Your consignment could not be found on our
system ) )

I could do this:
$object->UnknownConsign ment->SysMessage

However, depending on the condition, the "UnknownConsign ment" property
might be called something else.
Therefore, I need a solution, something like an array:
$object->[0]->SysMessage

Thanks in advance!
Mar 1 '07 #2
On Mar 1, 1:58 am, Hendri Kurniawan <ask...@email.c omwrote:
get_object_vars will actually give you an array of properties an object have

Hendri

JamesG wrote:
Hi,
I have the following object, I need to extract the SysMessage
property.
stdClass Object ( [UnknownConsignm ent] =stdClass Object
( [SysMessage] =Your consignment could not be found on our
system ) )
I could do this:
$object->UnknownConsign ment->SysMessage
However, depending on the condition, the "UnknownConsign ment" property
might be called something else.
Therefore, I need a solution, something like an array:
$object->[0]->SysMessage
Thanks in advance!

Thanks for the tip.
I'm trying to use this, but it's not working how I like.

The array is now as follows:
Array ( [UnknownConsignm ent] =stdClass Object ( [SysMessage] =Your
consignment could not be found on our system ) )

So you would assume by using: $array[0] would access the object, and:
$array[0]->SysMessage contains the message I want.
This does not work! I know it's something silly, so any further help
is appreciated!

Thanks again

Mar 1 '07 #3
JamesG wrote:
On Mar 1, 1:58 am, Hendri Kurniawan <ask...@email.c omwrote:
>get_object_var s will actually give you an array of properties an object have

Hendri

JamesG wrote:
>>Hi,
I have the following object, I need to extract the SysMessage
property.
stdClass Object ( [UnknownConsignm ent] =stdClass Object
( [SysMessage] =Your consignment could not be found on our
system ) )
I could do this:
$object->UnknownConsign ment->SysMessage
However, depending on the condition, the "UnknownConsign ment" property
might be called something else.
Therefore, I need a solution, something like an array:
$object->[0]->SysMessage
Thanks in advance!


Thanks for the tip.
I'm trying to use this, but it's not working how I like.

The array is now as follows:
Array ( [UnknownConsignm ent] =stdClass Object ( [SysMessage] =Your
consignment could not be found on our system ) )

So you would assume by using: $array[0] would access the object, and:
$array[0]->SysMessage contains the message I want.
This does not work! I know it's something silly, so any further help
is appreciated!

Thanks again
Hi James,

It doesn't work because it returns associated array.
What you have to do is get the name of that keys using array_keys.

$variables = get_object_vars ($object);
$keys = array_keys($var iables);
print $variables[$key[0]]->SysMessage;

Hendri Kurniawan
Mar 1 '07 #4
On Mar 1, 3:37 am, Hendri Kurniawan <ask...@email.c omwrote:
JamesG wrote:
On Mar 1, 1:58 am, Hendri Kurniawan <ask...@email.c omwrote:
get_object_vars will actually give you an array of properties an object have
Hendri
JamesG wrote:
Hi,
I have the following object, I need to extract the SysMessage
property.
stdClass Object ( [UnknownConsignm ent] =stdClass Object
( [SysMessage] =Your consignment could not be found on our
system ) )
I could do this:
$object->UnknownConsign ment->SysMessage
However, depending on the condition, the "UnknownConsign ment" property
might be called something else.
Therefore, I need a solution, something like an array:
$object->[0]->SysMessage
Thanks in advance!
Thanks for the tip.
I'm trying to use this, but it's not working how I like.
The array is now as follows:
Array ( [UnknownConsignm ent] =stdClass Object ( [SysMessage] =Your
consignment could not be found on our system ) )
So you would assume by using: $array[0] would access the object, and:
$array[0]->SysMessage contains the message I want.
This does not work! I know it's something silly, so any further help
is appreciated!
Thanks again

Hi James,

It doesn't work because it returns associated array.
What you have to do is get the name of that keys using array_keys.

$variables = get_object_vars ($object);
$keys = array_keys($var iables);
print $variables[$key[0]]->SysMessage;

Hendri Kurniawan
Thanks Hendri, works perfectly.

Mar 1 '07 #5
My pleasure
Mar 1 '07 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
3918
by: red | last post by:
If I use PEAR to produce an accociative array from a mysql table, and display the array with print_r, it says it is an array and it displays values like a regular array: Array ( => 1 => image/gif => buffaloa.gif => 153473
2
44192
by: juglesh | last post by:
hello, i have a d/l'd class that gives an array which prints like this: stdClass Object ( ] => stdClass Object ( => text => => fisrt name => yes
4
13489
by: Skrol29 | last post by:
Hello, It can be very usefull to code: $obj = new stdClass; Unfortunately the few that the documentation officially tells about this class is: ****************************** The name stdClass is used internally by Zend and is reserved. You cannot have a class named stdClass in PHP. http://www.php.net/manual/en/language.oop.php
3
1278
by: Jorgen Bodde | last post by:
Hi all, I wanted to solve a small problem, and I have a function that is typically meant only as a function belonging inside another function. function like; def A(): some_var = 1 def B(): some_var += 1
2
10846
by: Jean Marie | last post by:
Hi, i have a problem with the usage of stdClass. From a SOAP based web service i get a code list as an array of stdClass instances: array ( 0 => stdClass::__set_state(array(
9
37174
ebcovert3
by: ebcovert3 | last post by:
Ok, I really need help. I am running EE (an older version admittedly) but this just started happening. I noticed a lot of spam accounts being requesting authorization to my website. I went in to the account management section of my website and I am presented with this: Catchable fatal error: Object of class stdClass could not be converted to string in /home/ninjamon/public_html/guitars/pm/cp/members.cp.php on line 62 Here is my...
1
5731
by: electronik | last post by:
Hello! My var_export() from $object says: stdClass::__set_state(array( 'event_id' => '21', 'test' => 5, 'anode' => NULL, )) I want to access 'anode'.
6
4504
by: muckymuck | last post by:
Hello, i would like to know how i can get better output from a foreach. this code: $x = $wpdb->get_results("SELECT * FROM " . WP_PLAATJES); foreach ($x as $y) { print_r($y); var_dump( $y ); outputs:
0
8435
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8345
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8857
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8633
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7368
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6186
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5655
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4181
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
1999
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.