Tagged Questions
0
votes
1answer
54 views
PHP call method of class where class name is in field of other class
I have a CodeIgniter php setup and enhanced it with RESTful capabilities.
I have the following structure
base.php (this is the base controller class
class Base {
private $model
public ...
0
votes
3answers
48 views
Is there a way to find out if a method is static or not?
Is there a way to find out if a method is static or not?
My reason for needing to know:
I call static methods outside of any instantiation context. Non-static methods can't be called then, since they ...
4
votes
2answers
104 views
Instance configuration in Object Oriented PHP
I'm searching the most efficent way to apply a set of properties(configuration) to a newly created instance. My first objective is to keep the application object oriented, the second one is the ...
1
vote
1answer
74 views
Calling static method non-statically
I have a child class that extends a class with only static methods. I would like to make this child class a singleton rather than static because the original developer really wanted a singleton but ...
3
votes
1answer
82 views
PHP: Retain static methods AND maintain testability
My static methods are either of the 'helper' variety, e.g. convertToCamelCase(), or of the 'get singleton' variety, e.g. getInstance(). Either way, I am happy for them to live in a helper class.
The ...
2
votes
1answer
29 views
Accessing private from static method in PHP
Why this works? I mean, accessing the private variable.
class Test {
private $q = 0;
public function __construct() {
$this->q = 1;
}
public static function EpicConstruct() {
...
0
votes
1answer
61 views
Using extended class in static Method
New to OOP.
Is there Any work around for Using extended class instance in static method.
Suppose i have a complete class For Data bases.
class Mysql{
public function getrecords(){
}
}
...
0
votes
1answer
46 views
Cant use the class object with other class
I had 2 Class in PHP That i want to use with each other, but the Class in 2 different PHP Script like clothing_product.php and database.php. It look like this Below:
database.php:
...
0
votes
2answers
155 views
PHP uses static methods in object context
I have the following code (like, for real, this is my real code) :
<?php
class Foobar
{
public static function foo()
{
exit('foo');
}
}
When I run $foobar = new FooBar; ...
0
votes
2answers
50 views
Accessing static method via $this
I have the following:
class HP_Utils {
/**********************************************************************/
public static function getAction()
...
-1
votes
3answers
181 views
How can I access to parent non-static property in static method, in php? [closed]
I have a problem with accessing parents (non-static) property in child class static method. I've tried these as below:
class Parent
{
protected $nonStatic;
// Other methods and properties
}
...
0
votes
3answers
52 views
Logger class, How to access it from any method
I have a logger class I made and I'm not sure which is the best way to implement it.
The write() method in this class needs to be able to be called from any method from within every class in the ...
0
votes
0answers
93 views
PHP - How to return a new object through a static method? [closed]
I am writing a class that contains methods to set details about a user and a static method to return an object containing those details based on the ID passed to the method as an argument. I'm new to ...
-2
votes
1answer
93 views
OO PHP static keyword, should I use it? [closed]
I know this has been covered in past but I still have some doubts.
I'm writing script for fb and I have 3 objects that I'll be using through all classes. I'm Wondering if there is any advantage of ...
0
votes
1answer
89 views
PHP Data Between Static Methods of Different Classes
I'm writing a Wordpress plugin, and struggling with OOP concepts in PHP. What I want to do is relatively simple, I think, so I don't know whether I'm barking up the wrong tree with the way I'm trying ...
0
votes
2answers
119 views
Using MySQLi's real_escape_string as a static function
I'm wondering if I could escape strings (using real_escape_string) without first creating an object instance to apply the function to?
i.e, we can do this:
$database = new ...
0
votes
1answer
74 views
(php/oop) Method does not work in both directions
I have somme issue in PHP, I put this code in my index.php :
$test = $wke ->sql
->insert("test")
->values(array("foo" => "bar"))
->go();
This ...
0
votes
1answer
405 views
php call class method from static method inside same class but non instantiated
php 5.3+
Sorry for the long question, but I want to learn this completely.
I know I can't call a non-static same class method from inside a static method, without the class being instantiated as an ...
10
votes
6answers
550 views
Does using static methods and properties in PHP use less memory?
I'm working on a web application that sees dozens of concurrent users per second. I have a class that will be instantiated many times within the same page load. In that class, I have some properties ...
0
votes
3answers
188 views
PHP: What if I call a static method in non-static way
I'm not pro in Object Oriented Programming and I got a silly question:
class test {
public static function doSomething($arg) {
$foo = 'I ate your ' . $arg;
return $foo;
}
}
...
-1
votes
1answer
376 views
PHP syntax error: unexpected T_PAAMAYIM_NEKUDOTAYIM on Line 78
I checked all possible answers, but I'm sorry, I couldn't figure this out. I tried making the properties non-static but code pad shows the error on the line:
$task = new ...
0
votes
2answers
175 views
Static keyword usage php
Let say I have a class like the following:
class MyClass {
public function __construct($str) {
// do some stuff including:
$str = self::getIP($str);
}
private static function ...
3
votes
1answer
146 views
T_PAAMAYIM_NEKUDOTAYIM error calling static method
I have this error:
Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM, expecting T_VARIABLE in blog/wp-content/plugins/plugin/php/utils/cloud_data.php on line 98
static public function ...
4
votes
2answers
64 views
php no overloading inside static function
i dont seem to understand why the code below only prints "TEST" two times.
<?php
class A {
private $test = "TEST<br />";
public static function getInstance() {
return new ...
1
vote
1answer
60 views
Dynamic binding in static method php
class A
{
static function get_name_derived_class()
{
//This function must return the name of the real class
//Is it possible without insert a methon in B class?
{
}
class B extends ...
0
votes
0answers
60 views
PHPUnit - mocking return value of static method in a different class [duplicate]
Possible Duplicate:
PHPUnit Mock Objects and Static Methods
unit testing and Static methods
I'm using PHPUnit 3.6.10 and I can't seem to find a good example of mocking static methods in ...
0
votes
1answer
1k views
Non-static method utf_normalizer::nfc() should not be called statically
At the moment, I am installing PHPBB 3.0.10 and am having this error:
Strict Standards: Non-static method utf_normalizer::nfc() should not be called statically in ...
0
votes
2answers
64 views
Declaring functions as static in php
I have a set of independent functions which I want to put in a class.
They do not depend on any objects of the class, so while calling them, all the values required would be passed as arguments.
Is it ...
1
vote
1answer
108 views
php strange recursive result when using the __callStatic function
I am getting some strange result which is best explained by showing the code.
say I create a class A which has 3 methods:
add method - to add other class A instances to be used at later time
_call ...
1
vote
1answer
207 views
Fatal Error when calling static method
So, here's my situation :
I'm using CodeIgniter
I've set up a helper, ('string_helper' under 'DK' folder)
I've set up the dkString class in dk/string_helper.php
static function ...
3
votes
1answer
119 views
Is there a way to define an alias for static class method?
Basically my question is as stated in the title...
I want to give users the ability to define an alias for the static methods in a class (in my case specifically for MyClass).
I haven't found ...
9
votes
3answers
280 views
Why are static methods untestable?
Why are static methods untestable? Kindly exemplify (in PHP if possible).
0
votes
4answers
95 views
Access a class field from static method
For example, I have a class
class MyClass
{
public $something = 'base';
public function __construct()
{
$something = 'construct';
}
public function __destruct()
{
...
0
votes
1answer
416 views
Call static method from a string name in PHP
I need to call a static method of a class, but I only have a classname, not an instance of it. I am doing it this way.
$class = new "ModelName";
$items = $class::model()->findAll();
It works on ...
1
vote
2answers
124 views
Static classes vs class member access on instantiation
In versions of PHP prior to 5.4 I used static classes to instantiate an object and immediately call the required function, for example:
$result = Foo::init()->bar();
In the above example, the ...
0
votes
1answer
73 views
PHP __callStatic failing intermittently
I have a simple __callStatic magic method defined in my class:
public static function __callStatic($method, $args) {
if(substr($method, 0, 8) == "require_") {
// do stuff
}
}
The ...
1
vote
2answers
62 views
access object outside through an abstract function
Given the following classes:
<?php
class test{
static public function statfunc()
{
echo "this is the static function<br/>";
$api= new object;
}
}
class traductor
...
1
vote
0answers
98 views
PHP C++ Extension with a Static Method
I have a C++ class containing a static method.
The declaration:
class QConfig
{
public:
static int testStatic();
};
Implementation:
int QConfig::testStatic()
{
return ...
1
vote
4answers
173 views
Correct design for a validation class?
I'd like to create a class that will validate form input (please no comments about reinventing the wheel).
I'm thinking it makes more sense to have a class with static validation methods, rather than ...
1
vote
1answer
7k views
How can I solve "Non-static method xxx:xxx() should not be called statically in PHP 5.4?
Currently using a large platform in PHP.
The server it's hosted on has recently been upgraded to PHP 5.4.
Since, I've received many error messages like:
[Sat May 26 19:04:41 2012] [error] PHP ...
2
votes
1answer
96 views
Write a unit test to test a static method that returns it's own classes' constants
I have been tasked with writing a unit test for class with a bunch of static methods, most of which return some sort of constant defined in the class itself, and was pondering about the value of a ...
0
votes
3answers
962 views
Calling a private static method from __callStatic
I want to use __callStatic as a preProcessor for calling static methods. My idea is to make the methods private so every static call is forwarded to __callStatic. Then I could use this to do some ...
0
votes
1answer
321 views
Zend Model Class - Select queries being declared as static methods
I'm looking at some code I have inherited.
In all the Model classes - any method that does a "Select" query has been declared as static where as the "insert", "update", "delete" are not declared as ...
0
votes
1answer
66 views
How to use sfRequest instance in a static method?
I am using symfony 1.0.6 and in action file we can set error using,
$this->getRequest()->setError("email", "The email address does not look valid. Please re-check the address.");
But when ...
1
vote
1answer
83 views
PHP: Subclassing DateTime and using createFromFormat()
I have written my own class that extends DateTime. What I haven't been able to figure out override the static createFromFormat() so it returns an instance of my subclass. Is this even possible? ...
1
vote
3answers
185 views
PHP combined static and non-static class vs 2 separate classes
I have a PHP class for building HTML tags. Each HTML tag becomes of new instance. I have some utility methods needed within the class for handling certain functional stuff like escaping attributes and ...
0
votes
1answer
143 views
PHP methods that work in both instantiated and static contexts?
I'm trying to setup some PHP methods that are callable in instantiated and static contexts. What are some good ways to do this? For example I want to be able to do:
Foo::bar($item);
...
0
votes
2answers
138 views
PHP Error when using variable variable to insert data into static variable
I'm not very good at this, so I'm sure this is a stupid question.
I have a class:
class debug {
private static $messages = array();
private static $errors = array();
private static $all = ...
1
vote
2answers
2k views
Static methods in PHP
Why in PHP you can access static method via instance of some class but not only via type name?
UPDATE: I'm .net developer but i work with php developers too. Recently i've found this moment about ...
0
votes
1answer
346 views
Can't Call Static Method From Within Another Class
I have a Users class and a Log class. Within the Users class I have several methods. If there is an error found inside a method, I make a call to a static method within the Log class to write the ...


