Tagged Questions
The magic-methods tag has no wiki summary.
41
votes
6answers
1k views
Why does python use 'magic methods'?
I've been playing around with Python recently, and one thing I'm finding a bit odd is the extensive use of 'magic methods', e.g. to make its length available an object implements a method def ...
10
votes
5answers
597 views
Practical applications of PHP magic methods - __get, __set, and __call
I've generally tried to stay away from PHP's magic methods because they seem to obfuscate an object's public interface. That said, they seem to be used more and more, at least, in the code I've read, ...
8
votes
2answers
736 views
Yii's magic method for controlling all actions under a controller
Commando need's help from you.
I have a controller in Yii:
class PageController extends Controller {
public function actionSOMETHING_MAGIC($pagename) {
// Commando will to rendering,etc ...
7
votes
1answer
277 views
Is it possible, using PHPUnit mock objects, to expect a call to a magic __call() method?
I've got a mock object in a test. The real object, PageRepository, implements a magic method using __call(), so if you call $pageRepository->findOneByXXXX($value_of_field_XXXX), it will search the ...
7
votes
9answers
660 views
Best practice: PHP Magic Methods __set and __get [closed]
Possible Duplicate:
Are Magic Methods Best practice in PHP?
These are simple examples, but imagine you have more properties than two in your class.
What would be best practice?
a) Using ...
6
votes
2answers
307 views
PHPDoc and __callStatic
tl;dr
What is the correct way to annotate (in PHPDoc) functions implemented via __callStatic? More important: is there a way that will make NetBeans and PHPStorm understand that these are static ...
5
votes
1answer
77 views
PHP magic methods example
I have this question from the Zend PHP study guide and can't find a proper explanation...
<?php
class Magic {
public $a = "A";
protected $b = array("a"=>"A", "b"=>"B", ...
5
votes
5answers
119 views
Are there advantages to using __get/__set instead of traditional getter/setter methods except for less code?
coming from Java, I only have a few vacational visits to PHP. Looking at magic get and set methods, my (Java influenced) tummy starts hurting: It looks as if you were accessing properties directly ...
5
votes
4answers
1k views
__get/__set/__call performance questions with PHP
I have a custom-built MVC PHP framework that I am in the process of rewriting and had a question about performance and magic methods. With the model portion of the framework, I was thinking if ...
5
votes
4answers
1k views
PHP's magic method __call on subclasses
My situation is best described with a bit of code:
class Foo {
function bar () {
echo "called Foo::bar()";
}
}
class SubFoo extends Foo {
function __call($func) {
if ...
4
votes
2answers
403 views
Python equivalent of PHPs __call() magic method?
In PHP, I can do something like this:
class MyClass
{
function __call($name, $args)
{
print('you tried to call a the method named: ' . $name);
}
}
$Obj = new MyClass();
...
4
votes
2answers
89 views
consolidating class members in PHP
I recently came across an article by Matthew Weier O'Phinney (ZF project lead) that contains sample code similar to this:
class User
{
protected $_data = array(
'username' => null,
...
4
votes
4answers
731 views
4
votes
2answers
1k views
Triggering __call() in PHP even when method exists
The PHP documentation says the following about the __call() magic method:
__call() is triggered when invoking inaccessible methods in an object context.
Is there a way I can have __call() called ...
3
votes
2answers
114 views
Possible to test if a variable is static in PHP?
Is it possible to test if a variable is static in PHP? I am trying create a magic method __get that also looks at static variables. I find that property_exists() returns true when a variable is static ...
3
votes
2answers
224 views
How to implement __isset() magic method in PHP?
I'm trying to make functions like empty() and isset() work with data returned by methods.
What I have so far:
abstract class FooBase{
public function __isset($name){
$getter = ...
3
votes
1answer
94 views
PHP autloading failing in __sleep() magic method
I'm having issues with autoloading classes in PHP's magic __sleep() method. Autoloading doesn't take place, so the class cannot be found. In an attempt to debug this I tried calling ...
3
votes
4answers
488 views
Php __get and __set magic methods - why do we need those here?
On Zend Quick Start Guide here http://framework.zend.com/manual/en/learning.quickstart.create-model.html we can see:
class Application_Model_Guestbook
{
protected $_comment;
protected ...
3
votes
2answers
75 views
Is it possible to implement an array-like object in PHP?
I want to implement an object that behaves like an array. It should be used in this way:
$var = new CustomCollection(retrieveFromWebService());
echo $var[0]; // legal
$var[0] = 'a'; // illegal
Can ...
3
votes
3answers
174 views
__toString magic and type coercion
I've created a Template class for managing views and their associated data. It implements Iterator and ArrayAccess, and permits "sub-templates" for easy usage like so:
<p><?php echo ...
3
votes
5answers
1k views
PHP __get and __set magic methods
I don't think I ever post programming questions, since there's usually enough information out there, and if there isn't I test things myself. However, this is something that just doesn't seem right.
...
3
votes
1answer
473 views
PHP: __callStatic alternative for 5.2.x
So I have hosting that refuses to update to PHP 5.3 (which is annoying but fine at the same time; I'm flexible), but the only thing that is really ticking me off is not having __callStatic available.
...
3
votes
2answers
504 views
PHP - Zend say avoid Magic Methods?
I was reading this page - http://www.hm2k.com/posts/50-php-optimisation-tips-revisited
And one of the recommendations was to avoid using Magic Methods, cited from a Zend Performance PDF which gives ...
3
votes
3answers
667 views
php 5.1.6 magic __toString method
In codeigniter Im trying to use this plugin which requires I implement a toString method in my models. My toString method simply does
public function __toString()
{
return (string)$this->name;
...
3
votes
2answers
689 views
using the magic __set() method with 2D arrays
If I have the following registry class:
Class registry
{
private $_vars;
public function __construct()
{
$this->_vars = array();
}
public function __set($key, $val)
...
3
votes
4answers
983 views
Best Practices for __get() and __set()
Stemming from this question on using __get() and __set() to access private variables, I'd like to get the input on how they are used in general. I am wondering when or where would be the best time to ...
2
votes
1answer
38 views
how to force __callStatic for unknown static methods even if instance method with the same name exists?
I've some class with this signature (PHP 5.3):
class a {
public static function __callStatic($name) {
echo "unknown static method $name called";
}
public function foo() {
...
2
votes
3answers
99 views
PHP __get __set methods
class Dog {
protected $bark = 'woof!';
public function __get($key) {
if (isset($this->$key)) {
return $this->$key;
}
}
public function __set($key, ...
2
votes
3answers
142 views
Return null by reference via __get()
Quick specs:
PHP 5.3
error_reporting(-1) // the highest
I'm using the __get() by reference trick to magically access arbitrarily deep array elements in an object.
Quick example:
public function ...
2
votes
3answers
97 views
“__class magic method” (mediating references to class names by a custom code)
You can redirect calls to some properties/functions by using __get, __call.
Is there a way to do it for classes?
I would like to convert all mentions of some_class_name in the code to, ...
2
votes
1answer
252 views
Cannot find Function Definition of an Event Observer class in Magento
For anybody who has seen / used Magento, can you please tell me where can I find the following 3 function's definitions of the Catalog Product's save action's Event Observer class:-
...
2
votes
3answers
560 views
Magic Methods in Ruby?
Ruby enthusiasts! I am trying to write a DSL in ruby and i would like to be able to create some magic methods (not sure that is the most accurate term for what i want).
I would like to be able to do ...
2
votes
2answers
60 views
php: avoiding __get in certain circumstances?
I have a class where I'm using __set. Because I don't want it to set just anything, I have an array of approved variables that it checks before it will actually set a class property.
However, on ...
2
votes
1answer
154 views
__toString problems
I'm building a little MVC system (learning) and I have some problems with showing variables in my view files.
This is from my View class:
private $vars = array();
public function __set($key, ...
1
vote
1answer
26 views
Using PDO::FETCH_CLASS with Magic Methods
I have a class that uses magic methods to store properties. Here is a simplified example:
class Foo {
protected $props;
public function __construct(array $props = array()) {
...
1
vote
3answers
79 views
Creating infinity and negative infinity in python for any object
I'm working on a library that implements a data structure that works with any ordered data type--a rangeset. Many of the operations (like inversion) get interesting when you allow for positive and ...
1
vote
2answers
55 views
PHP: Static Readonly property in class
Good day everyone!
My problem is: I need to overload standard get and set for static variables in class... but no such functionality provided in php... it was asked in 2008 and still not ...
1
vote
4answers
52 views
__rsub__ and __rtruediv__ with fractions
I'm attempting to use the __rsub__ function in a class I've made called Fraction.
Here's the Fraction class code:
def __init__(self, num, denom):
''' Creates a new Fraction object num/denom'''
...
1
vote
2answers
45 views
Here's a puzzler: __set($value, $name) not called when a setter matching $obj->$key exists, but is called when it doesn't
Here's the context:
$values = $form->getValues();
foreach($values as $key=>$value) {
$obj->{$key} = $value;
}
If $key is a valid key, __set($name, $value) is not called. If $key ...
1
vote
2answers
177 views
Readonly multidimensional array property, PHP
I've been fooling with ArrayAccess and PHP's magic (__get, __set) for awhile now, and I'm stuck.
I'm trying to implement a class in which some properties, which are arrays, are read only. They will ...
1
vote
3answers
104 views
__get() example via Zandstra
Matt Zandstra gives the following example in his text "PHP Objects Patterns and Practice" to illustrate the __get() method:
class Person {
function __get( $property ) {
$method = ...
1
vote
2answers
446 views
__callStatic(), call_user_func_array(), references, and PHP 5.3.1
I've been reading around on SO, and elsewhere, however I can't seem to find anything conclusive.
Is there any way to effectively carry references through this call stack, resulting in the desired ...
1
vote
1answer
216 views
How to use interfaces and magic methods in PHP
I want to use interfaces, but some of my implementations rely on magic methods such as __invoke and __call. I have to remove signatures of methods that may be invoked magically (in any implementation) ...
1
vote
2answers
135 views
Using __set with arrays solved, but why?
Having done a bit of research, I eventually came across the answer to a question I was soon to ask here anyways; How do you work with arrays via the __get and __set magic methods in PHP? Whenever I ...
1
vote
2answers
512 views
PHP warning magic method set() class.XMLHttpRequest.php
i have a php script that runs perfectly
but i get 2 errors:
Warning: The magic method __set() must have public visibility
and cannot be static in C:\wamp\www\class.XMLHttpRequest.php on line 63
...
1
vote
3answers
89 views
Is there a __get magic method equivalent for instantiating classes?
Looking to see if there is any way to implement the kind of functionality of the __get() magic method, but when trying to instantiate a new class.
My goal is to have
$foo = new Cat();
Ultimately ...
1
vote
3answers
428 views
Docs for auto-generated methods in Ruby on Rails
Rails has all sorts of auto-generated methods that I've often times struggled to find documentation for.
For example, in routes.rb, if I have:
map.resources :projects do |p|
p.resources :tasks
end
...
1
vote
1answer
101 views
Using php's magic methods outside a class
Is it possible to use PHP magic methods (specifically __get()) outside a defined class?
I'm wanting to use it in a configuration file for quick loading. The configuration file has a single array, ...
1
vote
0answers
367 views
How to use getters and setters in PHP domain objects and transfer them correctly with Zend_Amf
I just started to use Zend_Amf and thus far I'm really happy with it for sending objects from Flash to the server.
Sending my objects from the server back to my Flash environment is causing me a ...
0
votes
0answers
26 views
Zend Db DependentRowset Magic Method
I'm trying to use Zend Db findBy() magic method, but it gives me this error:
Application error
Exception information:
Message: File "Game.php" does not exist or class "Game" was not found in the ...