Tagged Questions
0
votes
1answer
22 views
How to gather a jQuery object into the .on event using parameters rather than being in the global scope?
That was a tricky question to phrase. I will elaborate.
I have an object which is a datatable in this case, but it could be any jQuery object.
I listen for my button click with an .ON click event ...
1
vote
2answers
81 views
What kind of object is this?
I'm trying to load this object in python or PHP, but I'm now trying to know if there are libraries that are already written so that I don't parse the document myself.
variable = [["1","arbitrary ...
-2
votes
1answer
40 views
Declaration of child method should be compatible with that of parent method in PHP 5.3.13 [duplicate]
I get the following error running PHP 5.3.13 and I cannot see why.
Declaration of CustomCourse::toArray() should be compatible with that
of BaseCourse::toArray()
This is my PHP code below, ...
-1
votes
1answer
44 views
How do I access and set a variable's value throughout a class' functions in PHP [closed]
How do I access a variable throughout the life of a class structure.
For example:
class Foo {
public $var; // <- this is the variable I want
private function xyz($data) {
...
3
votes
4answers
49 views
Passing php objects to $.post()
I would like to pass 2 php objects as data, as they are, to $.post.
$(function() {
$("button").click(function() {
$.post("fight.php",{player: "<?php ...
0
votes
3answers
23 views
PHP object get value from array
I have written a class like this:-
class Mail{
function register()
{
return array('message_subject'=>$message_subject,'message_content'=>$message_content);
}
}
Then in the ...
3
votes
2answers
81 views
Wrapping an accessor method for a global object in some other function
I do a lot of stuff specifically with PHP and WordPress, and I've come across this concept quite often throughout the WordPress application; although, this question isn't specific to WordPress. I'll ...
-1
votes
3answers
39 views
“Call to a member function on a non-object” on existing object [duplicate]
I'm working with a few different classes across different php files. For some reason, the first time I call my function, it works correctly, but the second call results in an error.
This is my ...
0
votes
1answer
19 views
php var_export object - forgot to serialize before storing
I have a project where last developer forgot to serialize objects before storing them into database. Now I have:
stdClass::__set_state(array(
'id' => '1',
'name' => 'John',
...
-1
votes
3answers
28 views
two mysqli connections simultaneously
I tried to alter OOP script presented here:
to handle two databases at once (depending on function needs), but it seems not to work at all. I get an error message:
mysqli_query() expects at least 2 ...
0
votes
1answer
53 views
PHP 'stdClass not an object'
Fetching rows as objects from a MySQL database via mysqli::fetch_object (all PHP5), they look like this on var_dump:
class stdClass#5 (5) {
public $id =>
string(2) "23"
public $started =>
...
0
votes
0answers
40 views
Laravel 3/4 Save DB object in Database
I am trying to figure out how to build a query with laravel's query builder, and save the query builder object.
Something like this:
// Build Query
$query = DB::table('users');
...
0
votes
2answers
30 views
Find and fill XML nodes from a PHP object
First of all, sorry about my english.
So, I have an XML with a lot of nodes, like:
<first>
<second>
<third/>
<fourth/>
</second>
...
-4
votes
3answers
48 views
PHP Error: Cannot use object of type stdClass as array (array and object issues) [duplicate]
i was trying to copy this code.
<?php
foreach ($products as $product){
$id = $product['id'];
$name = $product['name'];
$description = $product['description'];
$price = $product['price'];
...
0
votes
3answers
44 views
Get id from object
I'm working with an api and I it returns these values:
CultuurNet\Auth\User Object ( [id:protected] => c23e4336-8f84-4501-9253-8b2faage5291 [tokenCredentials:protected] => ...
0
votes
2answers
24 views
Mother class attribute return NULL
I work on php Object and i have a problem, i try to call an attribute (wich is an object) from a mother class, and it's null. I'll show you my problem :
Class A {
protected $attribute;
...
0
votes
2answers
47 views
Insert User ID in a Session
I'm trying to get the user ID of the current user so that I can put it in a Session for other use. I tested the query and it returns the correct values, but when I try to put these values in my "user" ...
5
votes
2answers
68 views
What is the difference between these two array Iterations?
I'm studying PHP for an advanced exam. The practice test said that the first iteration is better than the second. I not figure out why. They both iterate the contents of an array just fine.
// ...
0
votes
3answers
50 views
PHP Fatal error: Cannot use object of type stdClass as array
Hi I need a help on below, I know its raised in a past but I am currently struggling to figure it out the error Cannot use object of type stdClass as array on line
...
-1
votes
1answer
38 views
PHP constructor function single param
UPDATE: I am getting this php error: Trying to get property of non-object on this line:
if ($card->name == $fileRef){
I'm constructing an Object in php using __construct(x='') { definition } and ...
0
votes
1answer
24 views
Counting data from array in object php
I'm new in php.
When i print_r($documents), the system will display:
Array ( [0] => stdClass Object ( [id] => 1 [title] => "AAA" [summary] => blablabla [score] => 100 [topic] => Technology ) [1] ...
0
votes
1answer
24 views
proceeding to next id from model php
Hi I'll post the code in question first then ask the question(s).
function printUserActiveAds($currUser){
$activeUser = new users();
$userActiveAds = new userAds();
echo
...
0
votes
1answer
26 views
PHP compare two objects with same properties but different properties values, get non-matching values
I have these two objects contained in a array:
array (size=2)
0 =>
object(stdClass)[20]
public 'name' => string 'John' (length=4)
public 'surname' => string 'D' (length=1)
public ...
0
votes
1answer
36 views
Convert array objects to string and separate the values
I have the following result
Array ( [0] => stdClass Object ( [name] => Identification ) [1] => stdClass Object ( [name] => Assay ) [2] => stdClass Object ( [name] => ...
0
votes
3answers
31 views
html object to call php and return string
I want to call a php script (with args) from HTML and to process the returned data
I tried various flavours of :
<object id=test1 data="object.php" type="text/plain">
where object.php just ...
1
vote
1answer
44 views
Can't Access Attachment Data In Google Plus JSON
I am accessing the Google Plus API and this is one of the results that are returned:
{
"nextPageToken": ...
0
votes
1answer
44 views
PHP PDO::PDO::FETCH_CLASS and parent class method access
I'm trying to use the method defined within the parent class when looping through the objects returned from within the PHP PDO call fetchAll() with fetchMode PDO::FETCH_CLASS|PDO::FETCH_PROPS_LATE.
I ...
0
votes
4answers
32 views
Better way to print out data from only the first index in an array full of objects?
Option 1:
$foo = array($obj1, $obj2, $obj3);
for ($i = 0; $i < 1; $i++) {
echo $foo[$i]->attribute;
echo $foo[$i]->attribute2;
}
//shows obj1's attribute and attribute2
Option 2:
...
0
votes
2answers
46 views
php function not returning class object
I have a DB class that I've created several functions in to return various values. One of the functions returns (or is supposed to) a "user" class object that represents a logged in user for the ...
0
votes
3answers
22 views
Call base Class function
say I have :
File BaseFoo.php :
require('MyClass1.php')
class BaseFoo(){
function check(){
//do somme stuff
}
function f1($o){
$c = new MyClass1();
return $c->f1($o);
}
...
-1
votes
1answer
13 views
Inheriting variables from the main class to the extended class PHP
I'm attempting to make a child class (feeds) inherit a variable from the main class (controller).
I have 3 files. They look as follows.
CORE FILE:
/* ----------------------------- *
* LOAD THE ...
-6
votes
1answer
72 views
Why in OOP you do everything in objects? [closed]
We have started to work with PHP developer, i looked at his code and from my perspective this is waste of ink to write stuff like this. I personally dont do OOP.
He never answered this question can ...
0
votes
1answer
32 views
PHP looping over object manipulate output based on object length
I have a PHP object that I am looping over, I know 2 things are definate with this object, I will never need to loop more than 12 times (1-12) and I will also always have to loop at least once.
My ...
0
votes
2answers
48 views
Do you know a Multi Layer Database class for php? [closed]
i need a class PHP already implemented (not to reinvent the wheel) who lets me connect to any kind of database i need, like
mysql
mssql
postgresql
oracle
I used to use Zend DB, but for some work ...
1
vote
3answers
35 views
cannot access properties from Fraction class
So I have a php class related to fractions, I do some calcs and when it comes
to accessing the values I
var_dump the output to get this:
object(Fraction)#1 (2) {
...
0
votes
2answers
22 views
yippits api PHP json decode
I am trying to loop through and grab details from this response. The "deals" section obviously repeats for however many results there are. I decode the json response with this
$jsonurl = ...
0
votes
2answers
33 views
Accessing Object within Array
I have the following output:
Array (
[0] => stdClass Object (
[id] => 20
[news_title] => Startup finance docs in GitHub
[news_url] => ...
0
votes
1answer
33 views
How is an instantiated object treated inside of an if statement?
For handling the conversion to strings, the magic method __toString() exists in php. However, if I have an instantiated object, such as:
$myObj = new Object();
$myObj->doSomeThings();
if ($myObj) ...
0
votes
1answer
36 views
How to best write a classes' methods to update the status of an object
I have two types of objects, call them Object1, and Object2. Whenever i make CRUD changes to these objects I record the changes in a special "status" table. I am writing out the classes for handling ...
-1
votes
1answer
22 views
PHP Passing by value to function large objects and modifing small part of it [closed]
I read a lot that passing by reference to functions in php is wrong if we don't really need to change original object and we want to increase performance. So let's say I'm passing a quite large object ...
1
vote
1answer
64 views
Can't Access Object Variables In PHP
For some reason when I print_r a variable containing an object I get data. However when I try to access each item using the -> notation it says it is NULL.
Here is the print_r dump of $user_data:
...
0
votes
1answer
21 views
Access Object Values Within Array In PHP [closed]
I'm using a third-party library (flexi_auth) to do user authentication. I am struggling to get the user information to display in my web-page, e.g. the first name.
When I do
...
4
votes
5answers
220 views
Accessing parent object variables from within the scope of the child object in php
So I have been researching templating engines and how to create my own simple templating engine. From a pure learning perspective, I read through a couple of them like this one here.
Using a little ...
0
votes
1answer
36 views
Object creation variable construct values
I am trying to figure out if there is a solution for the following problem:
Lets say I have a class named OpenFiles. The constructor requires a path to what file to open and an Object which is ...
0
votes
2answers
49 views
Codeigniter - use query result in another query [closed]
In my controller I have a list of results from a query (up to 10 rows or so). I am trying to use the results of the query to use in another. For example, the first query pulls out 'agency_ID' (the ...
1
vote
2answers
63 views
Proper way of creating a list of objects
I am wondering on the best way to go about creating a list of objects.
Currently, i have a class that deals with orders. In order to retrieve an order it needs to call to an API we were provided ...
3
votes
3answers
42 views
Semantics of adding an Object and an integer to each other, in PHP?
class wat
{
public $a = 3.14;
public $x = 9;
public $y = 2;
}
$a = new wat();
var_dump(1000 + $a);
var_dump($a + 1000);
The output is:
int(1001)
int(1001)
Well, adding the wat* object ...
0
votes
1answer
10 views
How can I use a reference only and make no copies of the object argument in php
I have a function that requires information to be passed to it. The information is contained within an object. Therefore I must pass that object as one of the function arguments. The object is very ...
0
votes
1answer
54 views
Accessing JSON object elements in PHP
I have a JSON object that I'm POST'ING to PHP from ExtJS interface. I get the object from
$json = $_POST["newUserInfo"];
The object will contain 3 arrays, which I can see if I do
...
0
votes
1answer
51 views
php using foreach on an object will only run once
I have a snippet of code that will over a DatePeriod object run some code. In some situations I need to run this foreach on the DatePeriod a couple times.
foreach($objects as $object){
...

