Magic methods are implicitly invoked by a programming language when some event or language construct is used.
0
votes
1answer
30 views
Check if a property exists on magically set properties
There is a lot of SO questions about the subject, notably this one, but it does not help me.
There is an ambiguity between property_exists and isset so before asking my question, I'm going to ...
2
votes
3answers
72 views
PHP: Detecting when a variables value has been changed
I was wondering if there is a way to add something like a change listener to a variable. The simplest example of what I mean would work something along these lines;
// Start with a variable
$variable ...
0
votes
2answers
36 views
PHP Magic Method __unset() does not work on calling unset function
I could not understand why __unset() not work.
class myclass {
public $name = array();
public function __set($arraykey, $value){
$this->name[$arraykey] = $value;
}
...
3
votes
3answers
56 views
Difference between php __set(), __get and simple seting, getting function
I'm not sure what the value is in having __get and __set methods in PHP.
Here is the code which set the value in array.
class myclass {
public $sotre = array();
public function ...
1
vote
0answers
33 views
How to get an array of method's parameters names and arguments from a base class?
So, basically, is there any way to do this pretty-way without using slow backtrace? Now i'm doing it like this:
class BaseTest {
public function magic() {
$args = func_get_args();
...
-1
votes
3answers
70 views
Codeigniter wont let me call model from model , is this true [duplicate]
So I've been trying for hours to get this to work but couldn't!
I have a base model that loads other models. These other models during their construct function reference some variables from the base ...
4
votes
3answers
120 views
Increment on “__toString”
I am not sure what the title should be, but the code should explain it better:
class Group {
private $number = 20;
public function __toString() {
return "$this->number";
}
}
...
4
votes
2answers
67 views
How to implements _isset magic method?
I try to implement the __isset magic method such as the following code,
Why do I always get an undefined index error? can anyone tell me how to do?
class c {
public $x = array();
public ...
2
votes
2answers
42 views
__isset not returning correct result
Im trying to kinda link objects together using the magic php functions.
I have an abstract class called page, and every page in my website extends this class.
In this abstract class constructor i try ...
0
votes
3answers
38 views
how can magic methods overide inheritance
Given class A that extends class B, how can I have calls to class A's __call function override the matching function inherited from the parent?
Consider this simplified example:
class A
{
public ...
0
votes
2answers
41 views
Check for anonymous functions in PHP arrays?
How can we check for anonymous functions inside PHP arrays?
Example:
$array = array('callback' => function() {
die('calls back');
});
Can we then just simply use in_array, and to something ...
3
votes
2answers
67 views
Confusing class and method call in OpenCart
I have a framework (OpenCart) Controller class (like: catalog/controller/product/product.php) the code looks like:
class ControllerProductProduct extends Controller {
public function index() {
...
1
vote
2answers
49 views
About PHP Magic Methods __get and __set on inheritance
OBS: I coded directly here, beacause my code is much more complex.
If I code:
class SuperFoo {
public function __get($name) {
return $this->$name;
}
public function ...
1
vote
1answer
54 views
creating an object out of array php codeigniter for login system
i have a simple question, i'm creating a simple login system, and i want to assign user info into model class after success login,
example model
class user extends CI_Model {
public ...
2
votes
2answers
29 views
Cannot use invoke magic method within another object
I have experienced something that I think it's a bug, but I'm not sure. So I come here to ask to the people who know more about this than me, is this a PHP bug? Look at the following lines:
...
0
votes
1answer
41 views
Magic methods __get and __set - example from ZCE
class Magic {
public $a = "A";
protected $b = array("a" => "A", "b" => "B", "c" => "C");
protected $c = array(1,2,3);
public function __get($v) {
echo "$v, ";
return ...
3
votes
1answer
95 views
How to document magic (_call and _callStatic) methods for IDEs
After many happy years coding in notepad++ and sublime, I've been advised to give a PHP IDE a go. I'm trying out phpStorm and it seems nice. The code completion and documentation is a great feature ...
1
vote
2answers
37 views
Call __get() on protected properties with -> operator?
My team is using lazyloading techniques to load sub-objects from our database. To do this we're using the magic __get() method and making a database call. All of our properties are protected so the ...
4
votes
6answers
236 views
Magic getters and setters in Enterprise Architect
I'm using Enterprise Architect to make a UML class diagram and generate PHP5 code with it. Using this, one can make getters and setters for an attribute, which looks like this in the code (only ...
1
vote
2answers
34 views
Through which method is the value invoked if magic getter is combined with getter
If I use it like this (outside of a class):
$user_agent = $user->user_agent;
Method get_user_agent() is called in constructor.
Here magic __get calls method get_user_agent and not ...
0
votes
1answer
88 views
How to define model fields with idiorm/granada without breaking the ORM functionallity?
The PHP orm Granada based on Idiorm works the following way to retrieve fields from database:
class ORM {
...
public function __get($key) {
return $this->get($key);
}
}
class ...
1
vote
3answers
55 views
php object oriented overloading
I came across the following code and could not figure out why the output of the script came out in a non-intuitive sequence using php's get and set magic methods.
class Magic
{
public $a = "A";
...
-1
votes
1answer
30 views
which is the better way to pass variable to the view | Performance [closed]
I send the data to View like this
$this->view->make('test', $data);
In the View class
## option one
public function make ($name, $data)
{
include ...
0
votes
1answer
54 views
PHP: __call not working properly
I'm having a problem creating a class called API_Widgets in WordPress using the magic __call function. If I simple rename the file to derp.php and the class to API_Derp then it works without problems.
...
2
votes
2answers
65 views
Class Inheritance from same Class
I'm very new to python 2.7, and have been searching for an answer on this for a couple of hours so I figured I'd ask my first question here on overflow. I hope to one day add something to the ...
0
votes
1answer
51 views
What is the order of __set __get, accessing a public field and __call?
Assume we have this code:
class SomeClass{
private $somePrivateField;
public function __get($name){
$function = "get".ucfirst($name);
return $function;
}
public ...
5
votes
2answers
117 views
__get is not called if __set is not called, however code works?
Here is my code:
<?php
class SampleClass {
public function __get($name){
echo "get called";
echo $name;
}
public function __set($name, $value) {
echo "set ...
0
votes
2answers
232 views
Magic Methods php, __call __get and __set?
my question is, say we have a class:
class SomeClass{
private $someProperty;
public function __call($name,$arguments){
echo "Hello World";
}
Now when I say:
$object = new ...
4
votes
2answers
109 views
Is there any way to override the double-underscore (magic) methods of arbitrary objects in Python?
I want to write a wrapper class which takes a value and behaves just like it except for adding a 'reason' attribute. I had something like this in mind:
class ExplainedValue(object):
def ...
0
votes
2answers
156 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; ...
1
vote
3answers
107 views
Singleton access / PHP Magic method __toString/ printing a static object
what I'm trying to achieve (PHP 5.3) is to have an accessor to my representation of, for example, the HTML Body of a page. Instead of echoing everything directly it should be added to an array of ...
0
votes
0answers
70 views
Customer unable to login in Magento Website
I have a Magento Website in which everything is working fine but customer is unable to login.
After searching why it is happening in code I found that function validatePassword($password) in ...
1
vote
1answer
45 views
Call a method of a class through another class property using the __call method
I want to call a method ( the method name is dynamically deciding) of a class through another class property using the __call method. I tried as given below. I hope the code will describe what I ...
0
votes
0answers
35 views
Create an accessing point into other classes using PHP magic __set and __get methods
I am making a framework with PHP.
I was struggling to make a simple way I could use other objects in other classes. Making globals, or using __construct's parameters was just not the viable option ...
0
votes
2answers
66 views
PHP avoid recursion in magic methods
I haven't found an exact duplicate of the question I'm posting here, so here it is:
class CBaseEntity
{
public function __construct()
{
}
public function __get($property)
{
...
1
vote
1answer
531 views
Zend Framework 2 - Magic Getter and Setter for Doctrine and Annotation forms
I read about a magic getter- and setter function which supersede the huge plie of standard getters and setters. (Link)
I altered the function of Miles because I'm using AnnotationForms and don't want ...
12
votes
2answers
2k views
scala slick method I can not understand so far
I try to understand some Slick works and what it requires.
Here it an example:
package models
case class Bar(id: Option[Int] = None, name: String)
object Bars extends Table[Bar]("bar") {
def id ...
1
vote
1answer
78 views
PHP function Empty Is Not Working When Magic Method __get & __set defined in class
Currently I am working in YII framework, Where I created a class that extends CFormModel,
In that class I override the following functions:
public function __get($name)
public function __set($name, ...
-1
votes
3answers
70 views
__get and __set magic methods not accessible
I have a class 'base' and a class 'loader', which looks like this.
class base {
protected $attributes = Array();
public $load = null;
function __construct() {
...
25
votes
2answers
518 views
PHP Child class Magic __isset works but __get doesn't
I have an abstract parent class Mongo_Document (from mongodb-php-odm) and an inherited class Model_ActionPlan. Mongo_Document has magic __isset and __get methods that interact with an array inside ...
0
votes
2answers
65 views
How would you determine all of the available parameters available from a Magento object?
Here is the scenario:
You are working with some model from magento and you want to know which methods are available to you to retrieve the various parameters of an object in magento.
Lets do an ...
0
votes
3answers
128 views
Why underscore PHP class functions
When using OOP in PHP I've seen a lot of functions written like this: function __myfunc(){}
I want to know what the underscores do. I've read they protect the function but from what and how?
Another ...
3
votes
2answers
310 views
PHP - __call all the time
Say we have a class with several protected and/or public methods.
I need to perform a check each time a method is called. I could do that check each time i call a method :
class Object
{
// ...
1
vote
1answer
58 views
need clarification between python's attribute access and its dir()
I have little confusion; you can see in the pic.. i have created a class, then applied dir() on this class to check which names are defined by this class.
Then to access attributes of this class; ...
0
votes
1answer
107 views
Best practice to get and set a value in multi-level dict [duplicate]
Possible Duplicate:
Checking a Dictionary using a dot notation string
There is a multi-levels dict like this:
some_infomations = {
"root":{
"sub":{
"more_deep":{
...
0
votes
1answer
79 views
mysqli_fetch_object($class_name) doesn't use __set() method when create new object instance
Here is my php class:
class Category {
private $cat_id;
private $cat_name;
private $cat_is_main;
private $cat_parent;
function __get($key) {
switch ($key) {
...
1
vote
2answers
78 views
__get magic method - how to throw and catch error for property overloading?
I define what happens when a non-existent property is being accessed by taking advantage of the __get magic method.
So if $property->bla does not exist I will get null.
return ...
3
votes
2answers
111 views
Call a child clases' __call method if it exists, and throw an exception if not
[edit] updated the title to more accurately reflect the problem
The problem I am trying to solve is this: I need to know if a method was called via parent:: and while I can use debug_backtrace it ...
0
votes
2answers
96 views
ArrayAccess/ArrayObject do not work with functions like call_user_func_array() [closed]
When implementing an object using ArrayAccess or ArrayObject, to some operations it's a perfectly normal array (for instance a foreach() statement). Others, however, are not so easily fooled and still ...
-4
votes
1answer
46 views
__set in constuctor? [closed]
Just curious. Is the magic method __set called when setting properties in __construct?
class MyClass
{
public function __construct()
{
$this->property = 'something';
}
...




