Tagged Questions
The stdclass tag has no wiki summary.
11
votes
2answers
2k views
Convert/cast an stdClass object to another class
I'm using a third party storage system that only returns me stdClass objects no matter what I feed in for some obscure reason. So I'm curious to know if there is a way to cast/convert an stdClass ...
7
votes
4answers
609 views
When should I use stdClass and when should I use an array in php5 oo code?
In the middle of a period of big refactorings at work, I wish to introduce stdClass * as a way to return data from functions and I'm trying to find non-subjectives arguments to support my decision.
...
6
votes
2answers
525 views
SOAP Request with <stdClass> tags
This is my first time posting, so forgive me if I'm not very clear. I will also preface this by saying that I really know very little about php and web services.
The issue I'm having is this:
A ...
6
votes
4answers
3k views
PHP: Count an stdClass object
I have a stdClass object created from json_decode that won't return the right number when I run the count($obj) function. The object has 30 properties, but the return on the count() function is say ...
5
votes
2answers
439 views
PHP - Array to Object?
Is there a way to convert a multidimensional array to a stdClass object in PHP?
Casting as (object) doesn't seem to work recursively. json_decode(json_encode($array)) produces the result I'm looking ...
4
votes
6answers
188 views
PHP strict standards: is this bad?
When I create a standard class I mostly do:
$test = null;
$test->id = 1;
$test->name = 'name';
However in strict-mode I get an error.
So obviously the correct way of doing it is:
$test = ...
3
votes
1answer
179 views
PHP StdClass - access fields as ->field or ->{'field'}
I'm working on this PHP code collaboration and it seems that some people access PHP StdClass fields like this
$body->head
and others like
$body->{'head'}
As far as I can tell these are ...
2
votes
1answer
208 views
how can i fetch data from this array (stdClass) php?
how can i fetch data from this array (stdClass) php??
Array
(
[0] => stdClass Object
(
[id] => 4
[programs] => FireFox
[version] => 4.00
...
2
votes
2answers
915 views
stdClass Object and array how to using php
I'm trying to get the twelve ids that this structure shows:
stdClass Object
(
[checkins] => stdClass Object
(
[count] => 12
[items] => Array
...
2
votes
4answers
429 views
How to access a member of an stdClass in PHP that starts with an @
I have some json object that I decoded, and one of the attributes starts with an "@" and I can't access the element with php because it throws an error.
[offers] => stdClass ...
2
votes
3answers
3k views
Add properties to stdClass object from another object
I would like to be able to do the following:
$obj = new stdClass;
$obj->status = "success";
$obj2 = new stdClass;
$obj2->message = "OK";
How can I extend $obj so that it contains the ...
2
votes
4answers
2k views
PHP SoapClient call response missing parts of answer
I am having trouble with PHP parsing of a SoapClient call's response. For some types of answers, it is returning arrays of empty stdClass objects instead of initialized stdClass objects.
The server ...
2
votes
3answers
220 views
Instantiate stdClass in place
Is it it possible to do this in php?
Javascript code:
var a = {name: "john", age: 13}; //a.name = "john"; a.age = 13
Instantiate the stdClass variable on the fly ?
2
votes
6answers
3k views
stdClass Object problems
I'm struggling to parse the below data using PHP. An API returns it, and I've tried various syntaxes. How do I return the data in a non-object way? Or, what's the syntax to call the data using the ...
1
vote
1answer
33 views
PHP Troubles with converting from JSON to stdClass, making changes, and then converting back to JSON
So, in the very beginning, before the send_sms.php is loaded, I have this Json stored in a database:
{
"chats": {
"chat": [{
"id": "1",
"name": "Ethan Wilberforce",
...
1
vote
2answers
28 views
Printing an stdClass object
I have:
$value = $wpdb->get_row("SELECT custom_message FROM `wp_wpsc_cart_contents` WHERE purchaseid='" . $purchase_log['id'] . "'");
if I do:
print_r($value);
I get:
stdClass Object
(
...
1
vote
5answers
57 views
Cannot use object of type stdClass as array in
i have sometimes following error
Fatal error: Cannot use object of type stdClass as array in..
with this function:
function deliciousCount($domain_name)
{
$data = json_decode(
...
1
vote
1answer
49 views
Foreach loop with mixed stdClass objects and arrays
Here I have an output from a website using Soap
stdClass Object
(
[page] => 0
[items] => 3
[total] => 3
[saleItems] => stdClass Object
(
[saleItem] => Array
(
[0] => ...
1
vote
1answer
141 views
codeigniter 2 and smarty 3 : multi array of stdClass results returned - how do i display these in smarty
My Sql function getLive_projects has this query -
$query = "SELECT p.* FROM projects p WHERE p.live = 1 ORDER BY client_name ASC";
$response = $this->db->query($query)->result();
My ...
1
vote
3answers
226 views
stdClass object array inside of another array
I'm trying to get information from the $array1 below.
I'm getting with no problems venue's name and location address by doing:
$array2 = array();
$array3 = array();
foreach($array1 as $item){
...
1
vote
3answers
273 views
PHP StdClass() properties
I'm having some issues with the StdClass() object in PHP..
I'm using it to send information (a string and boolean) to a function.
Outside the function, it works great.
$args = new StdClass();
...
1
vote
1answer
568 views
Codeigniter - return my model object instead of stdClass Object
Not sure the best way of phrasing this so bear with me.
Within Codeigniter I can return a record set of my object no problem but this is returned as a stdClass object not as an "model" object (for ...
1
vote
1answer
2k views
PHP: Catchable fatal error: Object of class stdClass could not be converted to string
I get the following dump & error when running the attached code. What I'm confused by is that $procID appears to be returned as a string, but as soon as I attempt to pass it again, its an object? ...
1
vote
2answers
73 views
Getting data from an array?
My var_dump($gallery) looks like this:
array(1)
{ [0]=> object(stdClass)#102 (9) {
["term_id"]=> string(2) "17"
["name"]=> string(5) "Image"
...
1
vote
3answers
587 views
How to access stdClass variables stdClass Object([max(id)])=>64)
I need the very last valid entry in a database table which would be the row with the greatest primary key. So using mysqli, my query is "SELECT MAX(id) FROM table LIMIT 1". This query returns the ...
1
vote
2answers
652 views
how do i sort the following array/stdclass object in php?
how do is sort this object by 'pos' in php?
Array (
[0] => stdClass Object ( [str] => Mondays [pos] => 170 )
[1] => stdClass Object ( [str] => Tuesdays [pos] => 299 )
[2] => ...
1
vote
1answer
2k views
PHP StdClass Object accessing a$b
The below is a dump of variable $x (youtube video).
But I want to access media$title, but obviously when I try
$x->media$title->$t
it does not work. Any suggestions on how to access the title of ...
1
vote
3answers
342 views
PHP bug with converting object to arrays
I had this question earlier and it was concluded it was a bug in 5.2.5. Well, it's still broken in 5.2.6, at least for me:
Please let me know if it is broken or works for you:
$obj = new ...
0
votes
0answers
33 views
PHP's stdClass - CodeIgniter DB
in CI after I get the data from the DB it returns a CI_DB_mysql_result Object, and each result is a stdClass.
Here it says that I can just add properties to an stdClass object. But I cant seem to be ...
0
votes
3answers
66 views
php appending string to stdClass object
I'm pulling records from database, and I have a filed called content_fr
the _fr is being dynamicaly created based on a site language.
Getting all records from the table gives me of course content_fr ...
0
votes
3answers
52 views
Global check for valid properties in a PHP stdClass?
Is it possible to check properties from a PHP stdClass? I have some models which are being generated as an stdClass. When using them I would like to check if the properties I'm calling exist in some ...
0
votes
0answers
30 views
Passing custom typed objects as arguments on a PHP service method call
We're using zendamf as a remoting gateway between a flex client and a PHP server.
Mapping server side types to client side types doesn't seem to have any affect on objects passed as service method ...
0
votes
2answers
68 views
How to print properties of stdClass object in PHP?
I have an array that contains standard class object. How can I return the properties (print them out) in a stdClass object?
0
votes
1answer
52 views
stdClass (again)
think I'm going mad but think i've tried everything possible!
got an object like so;
object(stdClass)#9 (8) {
["Results"]=>
array(3) {
[0]=>
object(stdClass)#10 (5) {
...
0
votes
1answer
292 views
php convert stdClass object to array
Could anyone shed any light as to why i can get this working.
I want to query an array to see if the USER->id that is currently logged in is assigned a specific role.
$contextroles = ...
0
votes
1answer
167 views
stdClass issue with detecting isset, empty, other
First off let me start by saying I am using CodeIgniter and the Facebook Class Elliot Haughin created. http://www.haughin.com/code/facebook/ Which I have that working find all all is well. However ...
0
votes
2answers
75 views
php: constant variable attach with stdclass
Is it possible to call a data from database by attaching a constant variable like this?
$table_result->description_{constant_varible};
So that the actual stdclass I intend to call is ...
0
votes
2answers
177 views
php stdClass Object
im a bit lost
with print_r i get these results
stdClass Object ( [distlat] => 0 [distlng] => 0 [id] => 380 )
but how can echo the results?
like stdClass->distlat->$distlat ?
please ...
0
votes
1answer
65 views
Multi dimensional array, with an object for good measure - iteration?
This one is starting to get on my nerves. Still fairly new to arrays and objects.
I need to be able to pull out [id] in the numbered array, plus get access to the lonely snippet_count at the end.
I ...
0
votes
1answer
1k views
How to access stdclass object after a specific key value pair?
I have a stdclass object as shown below:
stdClass Object
(
[text] => Parent
[values] => Array
(
[0] => stdClass Object
(
...
0
votes
1answer
106 views
Forward slashes in stdClass object parsing JSON?
I'm trying to access data within a JSON object I create using json_decode (based on a result from a URL). The response is:
stdClass Object
(
[/guid/9202a8c04000641f8000000016f4c9cd] => ...
0
votes
2answers
271 views
PHP: Count number of objects within another object?
I'm still new at PHP and I can't seem to count the number of Objects within another object. The stdClass object looks like this:
stdClass Object (
[data] => Array (
[0] => stdClass Object ...
0
votes
1answer
206 views
PHP connecting to WCF Service parsing return data
I'm having a problem parsing the data being returned by my WCF web service.
The web service is passing back an array of strings, this data is put into a StdClass object, the problem i'm encountering ...
0
votes
1answer
286 views
Creating default object from empty value
I need to set the object variable at run time, it is working, but PHP returns me:
Creating default object from empty value (/sct/fw FW_List.class.php:1142)
function initTemplates(&$object, ...
0
votes
1answer
308 views
Twitter API Local Trend Parsing - stdClass Error
I'm trying to parse the latest Twitter trend from a location (Atlanta in this case)
Here's my code:
<html>
<head></head>
<body>
<?php
$init = ...
0
votes
2answers
106 views
How to find an element in a structured array
The code below returns an array of images that are "attached" to posts...
$args = array(
'post_type' => 'attachment',
'numberposts' => -1,
'post_status' => null,
...
0
votes
3answers
1k views
PHP JSON decode - stdClass
I was having a question about making a 2D JSON string
Now I would like to know why I can't access the following:
$json_str = ...
0
votes
1answer
381 views
PHP stdClass variable attributes question
I have code like this:
foreach($attributes as $attrib => $options){
if($bb->$attrib != $default->$attrib){
$delete = false;
}
}
$bb is a stdClass, im reading and writing ...
0
votes
1answer
58 views
Getting a value from an object php
I used var_dump on an object in my code. print var_dump( $$user);
result: object(stdClass)#35 (1) { ["user1_ready"]=> string(1) "0" } How do I get to this value (0 in this case).
I tried print ...
0
votes
2answers
2k views
Object of class stdClass could not be converted to string
I am having a problem with PHP at the moment, I am getting this error,
Object of class stdClass could not be converted to string the error occurs when I run this portion of code in my site,
...