Tagged Questions
1
vote
1answer
31 views
Why is $db PDO object passed as null in constructor parameter?
I'm wondering why in the PHP code below, the PDO objects $db is passed as NULL. i.e. $db=NULL in the constructor parameter.
class ColoredListsUsers
{
/**
* The database object
* @var ...
1
vote
1answer
20 views
PDO Wrapper Class - If Connected Check
I'm writing a PDO Wrapper as a bit of a learning project and I'm trying to combine it with using dependency injection. My current set up has a factory that will set dependencies. So, for example, I'll ...
1
vote
5answers
56 views
Best practice with classes [closed]
'I have a question about the best way to handle class properties.
For ease of explanation, lets say I have a class called company. "Company" has single properties, such as "name", "address" etc. In ...
0
votes
2answers
20 views
Call parent constructor automatically after children PHP
I was tried with the name of parent class like constructor and works partially for me.
First calls to
"DarthVader method"
like constructor but never call to
"LukeSkywalker constructor".. ...
0
votes
1answer
31 views
php class _Construct empty
<?
session_start();
/*
echo $_SESSION['SQLIP'];
echo "<br>";
echo $_SESSION['SQLDB'];
echo "<br>";
echo $_SESSION['SQLUSER'];
echo "<br>";
echo $_SESSION['SQLPASS'];
echo ...
1
vote
1answer
87 views
Define a Zend Model as Singleton
I want to put my Zend Model as Singleton, so I have done this:
class Social_Model_DbTable_Dossier extends Zend_Db_Table_Abstract {
private static $_instance;
public static function GetInstance() {
...
-3
votes
0answers
53 views
PHP class constructor issue
Our web server has php 5.3.3 version. Some of the old scripts are not working because it uses the old style constructor (same name as the class name).
I have downgraded the php version into 5.3.2, ...
1
vote
0answers
37 views
PHP: Calling a 'setup' abstract method from an abstract class constructor; good or bad design?
I'm trying to decide the design pattern for a class structure I'm working with and I'm torn on the best way to implement the setup of the classes.
One approach calls an abstract setup function in the ...
0
votes
3answers
42 views
CodeIgniter variables in constructor
I looked up the topics around, but I didn't see something for my case.
So, I have controller filled up with methods, and a construcor which loads the models that i commonly use in this specific ...
0
votes
2answers
42 views
Use a variable from __construct() in other methods
I defined a new variable in __construct() and I want to use it in another function of this class.
But my variable is empty in the other function!
this is my code:
class testObject{
function ...
1
vote
1answer
31 views
PHP ORM how to set id in constructor
I have a basic problem with following code:
<?php
interface UserInterface
{
public function getId();
public function getName();
}
class User implements UserInterface
{
private $_id;
...
1
vote
0answers
69 views
PHP send optional paremeters
and sorry about what i believe is a fairly basic question. I am wanting to send an image optional parameter in the below code, to a hosted image for our checkout. Unfortunately the providers and ...
3
votes
0answers
74 views
Syntax error on __construct, works if I use ClassName as constructor signature [closed]
When I create and instance of this class I get the error
Parse error: syntax error, unexpected '__construct' (T_STRING),
expecting variable (T_VARIABLE) on line 9.
This is how I create the ...
1
vote
1answer
74 views
php constructor inheritance
I want to clarify a problem i am having
I have a base DataBase class that will be inherited by a bunch of other classes.The constructor looks like this:
public function __construct ($table)
{
...
1
vote
2answers
80 views
PHP 5.4 - Traits and self / static
I want to chain method calls on my classes as follows :
new Obj($args, $if, $any)->foo()->bar();
Unfortunatly i have to enclose the construction within parenthesis :
(new Obj($args, $if, ...
0
votes
3answers
111 views
CodeIgniter: trying to call constructor method to check if user is logged in (causes endless redirection loop)
I've got a Problem with CodeIgniter 2.1.2 and stuck for hours try to solve it :-/
I know there are plenty(!) of threads about that, but i couldn't find a solution for my problem.
I want to load a ...
7
votes
5answers
106 views
Why does PHP allow “incompatible” constructors?
Here's a couple of snippets:
Overriding constructor method has an extra parameter.
class Cat {
function __construct() {}
}
class Lion extends Cat {
function __construct($param) {}
}
...
1
vote
2answers
32 views
In what scenario would constructors be private or protected?
Is there such a situation where __construct() would be declared anything but public?
If so, why?
0
votes
1answer
21 views
Call class inside of a constructor [closed]
I would like to know if it's correct to call for a class inside of a constructor to access some methods of that called class :
class myClass {
private static $instance;
private $header;
...
0
votes
2answers
52 views
Passing array to __construct
I'm having the following array :
$allZones = array (
'header' => array('div1', 'div2'),
'content' => array('div3', 'div4')
);
I'm using it to create instances the ...
0
votes
2answers
34 views
Is there anyway I can send a variable as an argument to the constructor of a controller in the codeigniter?
I am new to codeigniter. I was just thinking, is there any way I can send any variable to the constructor of a controller, the same way I can do in java when I create an object? Any help would be ...
0
votes
1answer
135 views
How to correctly embed php code in a Wordpress page template?
I am using Wordpress with the Constructor theme. I came accross the following totorial on building an easy crud application:
http://www.jeasyui.com/tutorial/app/crud3.php
I have customized it to my ...
0
votes
2answers
44 views
How to add wordpress includes and login management to custom module?
I am building a Wordpress site with the Constructor theme. I had to add custom coding to solve my goals. There is a module, that let's the user add children elements to his profile, that will be saved ...
1
vote
1answer
91 views
How to fix float sidebar in Wordpress with Constructor theme?
Please help me fix or solve a problem regarding the positioning of the sidebar. I have a Wordpress with the Constructor theme in a one right sidebar layout. The webpage can be seen in the following ...
0
votes
2answers
26 views
abstract record
I'm trying to create automatic mechanism that will load data from database into object using abstract class that will be extended when neccessary.
Here is my simplified idea, which is not working at ...
0
votes
1answer
48 views
PHP: Can I pass $this in the _constructor?
I would like to pass a php object in its own constructor to another object like this:
class foo {
$parent_object;
public function __construct($obj) {
$this->parent_object = $obj;
}
}
...
0
votes
5answers
53 views
How do i deal with multiple contructor arguments or class variables?
How do I know what to load in a constructor and what to set using the set methods later on?
For example, I have a question class which most of the time will call the following vars:
protected ...
0
votes
2answers
78 views
Passing mysqli to class for function use
Probably asked many times but I am hard-headed.
I have the following class to manage a MySQL db.
class blog {
function show ($mysqli) {
// Code working on $mysqli here
}
}
...
0
votes
3answers
42 views
PHP constructor paramters confusion
While reading about PHP constructors, I came across the below example on this page.
<?php
class MyClass {
// use a unique id for each derived constructor,
// and use a null ...
1
vote
1answer
37 views
Child Constructor Not Maintaining Variables
I've discovered an odd problem with a child class that extends an abstract parent class.
I'm calling my child class like this:
$atts['ad_name'] = 'Test';
$atts['ad_type'] = $_REQUEST['ad_type'];
...
0
votes
1answer
23 views
Cannot extend controller in cake
In one of my controllers, trying to do nothing extra in the constructor but run it's parent constuctor:
public function __construct(){
parent::__construct();
}
I receive the error "Call to a ...
0
votes
2answers
44 views
PHP Problems with constructing classes (variables and namespaces)
I just got stuck with the following problem. I'm trying to construct a class but it isn't working. When I'm constructing the class it uses namespaces and variables, because the variable has to be put ...
0
votes
0answers
82 views
Empty SESSION after changing way of connection to the db
I'm creating a cart class, which worked before while I used a global db variable, but now after I establish a connection in the constructor, the get variable becomes empty. Which results in a empty ...
1
vote
1answer
54 views
Where to do the work, inside the __construct() or outside?
I've written a user class based on other supposedly high quality, secure classes I found online (although mixing some of them since, from what I've learned, none was actually that secure). The thing ...
1
vote
0answers
84 views
PHP SoapClient::__construct uncustomized request
I use PHP SoapClient to work with my JAVA application.
Here's a pseudo-code of my extended SoapClient class:
class MyClient extends SoapClient {
public function __construct($url) {
$params = ...
0
votes
1answer
53 views
PHP: object extends an object, how does constructor work?
I have a class User. Then I extend User with some extra information in Profile.
My constructor for Profile looks like this:
function __construct($user_id) {
// This function sets all of User's ...
0
votes
2answers
484 views
Custom Composer Autoloader
Is there anyway to use a custom autoloader with Composer?
I have some libraries with many hundreds of classes, they are laid out in the directory structure as per PSR-0.
However they also include a ...
0
votes
1answer
52 views
Can objects be created with default constructor when there is a defined one in a php class?
Yes I am confused whether the default constructor(the one automatically made when the class is made and is parameter-less) is still available for construction of an object when I have also defined a ...
0
votes
1answer
128 views
What is the use of constructor in abstract class in php
I followed this link already before asking - Answer is in JAVA context and this for constructor in PHP .
Since I am starter, my implementation of my PHP code in OOP concepts, so I am really willing ...
0
votes
0answers
44 views
PHP in-class construction?
I'm constructing PHP classes through one class, so they can individually be called, however, when calling from the main class, the variable is not found.
Such as:
init.php
...
2
votes
1answer
108 views
When using !(self::$_instance instanceof self) why does this fail to work
I recently had written some code to deal with instantiating a object, assigning a object and some data to the objects properties and then perform a call to a method in order to do something.
But when ...
1
vote
1answer
86 views
How can I get the __construct() in MY_Controller to run? [duplicate]
Possible Duplicate:
Codeigniter extending extended MY_Controller
I have been fiddling with this problem for a while now, and am at the point of frustration. I am extending the controller ...
3
votes
5answers
103 views
Tell a PHP Class to always run it's constructor when it is extended
From what I understand, when a PHP Class is extended, it's constructor is not called? So in the below, the method Options_Page_Template->on_enqueue_scripts() is never actually run -
class ...
0
votes
0answers
52 views
Should only dependencies go in the constructor?
Let's say I have this User class and its constructor is like this:
__construct(Config $config, Logger $logger, UserDAO $userDAO, Auth $auth)
and inside it I just set the dependencies like ...
0
votes
0answers
99 views
PHP PDO fetchAll into class and constructor
I'm trying to find the best way to use a class to turn data into a class but using the same class to insert into a table or return information and I'm not sure the best way to do that. The constructor ...
-1
votes
2answers
70 views
Assign multiple parameters to properties in PHP
I have a class definition like such:
class User{
public $first;
public $last;
public $email;
public $guid;
public $website;
public $bio;
public $picture;
public ...
3
votes
2answers
135 views
Constructor Overloading
Normally when I want to create a class constructor that accepts different types of parameters, I'll use a kludgy overloading principle of not defining any args in the constructor definition:
e.g. for ...
0
votes
2answers
97 views
PHP - Visibility of __construct
If i have :
abstract class AbstractSingleton
{
protected static $instance;
public static function & getInstance()
{
if(null === static::$instance) static::$instance = new ...
0
votes
3answers
73 views
constructor and this pointer
The question is: after declaration "private $json" should i use in constructor $json or $this->json ?
class Controller{
private $json;
private $data;
function __construct(){
...
0
votes
1answer
62 views
Add element on array
I'm developing a graph data structure, but I'm with a problem:
<?php
class Graph
{
var $graph_arr = array();
function Graph()
{
$this->graph_arr = array();
...


