1
vote
1answer
21 views

how to use reflection in php to deal with non-existant items when using the amazon advertising api

I'm not sure how to deal with this, here is a snippet of my php code: $myTitle = $_GET['Title']; $myAuthor = $_GET['Author']; $response = ...
0
votes
2answers
32 views

PHP reflection behaviour

I am trying to figure out how the reflection class works. When I reflect a class I expect it to have all methods/properties from it's parents. For example class A { public function foo(); } ...
0
votes
1answer
18 views

get instances of class interface implementations in a file PHP [duplicate]

Lets say I have file myplugin.php How can I get a list of all the classes that implement a certain interface? Real simple
0
votes
1answer
37 views

PHP ReflectionClass - Fatal error: Class name must be a valid object or a string

I cannot seem to get around this error when I'm trying to create an Object using Reflection and get this error every time. Here's my code: public static function getMapper($klass) { echo $klass; ...
0
votes
3answers
30 views

Reflection class PHP from file?

I wanna get value from Class PHP without initialize this Class. For this I give the file path where this class, for it to be reviewed, but not initialized. My Idea: <?php $reflection = new ...
1
vote
2answers
37 views

Convert static method to lambda in PHP

I want to get static method from class and copy it to variable. This is non-working example illustrating my question: class foo { public static function bar($argument){ return 2*$argument; } } ...
0
votes
1answer
57 views

Merge two objects in a similar way as to PHP's array_merge

In PHP it's common practice to pass an array as options for a class, and then merge that array with a set another array that holds the defaults. Something like this. class MyObject { private ...
3
votes
1answer
55 views

PHP How to check if a subclass has overridden a method of a superclass?

Using PHP, how can a class determine if a subclass has overridden one if its methods? Given the following two classes: class Superclass { protected function doFoo($data) { // empty } ...
0
votes
1answer
28 views

get object variables in abstract class

I have a abstract class which implements the JsonSerializable Interface. version 1: abstract class MyBase implements JsonSerializable { public function jsonSerialize() { ...
0
votes
0answers
28 views

Upon Reflection: Calling a dynamic method statically

I'm used to overloading, and with php, have found myself exploiting the following to facilitate some 'efficiencies' to reduce the overhead in changing how I think(!) A dynamic method may be called ...
0
votes
0answers
33 views

Abstraction - How to create the correct inherited class based on what is stored in the database

I have the following abstract class: class Media { function Get Media() { // Get the media type } } And the following classes that derive from that class: class ImageMedia ...
0
votes
2answers
43 views

Using Reflection for static object creation

class HueHue { private $hue; public function show(){ echo $this->hue; } public static function parse($string){ // parse it all $HueHue = new HueHue(); ...
0
votes
1answer
19 views

Does ioncube keep comments after original file has been encrypted?

I would like to use the getDocComment() function of Reflection to collect the comments above functions. It works well with unencrypted php files. But in the future I would like to encrypt the php ...
1
vote
1answer
42 views

Can I find where a PHP anonymous function was defined?

Closures don't seem to be fully exposed to reflection. On inspection as an object, it doesn't seem to have anything useful: $foo = function ($a, $b) {}; $ref = new ReflectionObject($foo); ...
0
votes
1answer
25 views

Why does ReflectionClass::getMethods() returns private methods from parent class?

Consider the following snippet: class A { private function foo() {} protected function bar() {} } class B extends A { private function baz() {} } $r = new ReflectionClass('B'); foreach ...
3
votes
1answer
38 views

Access SplObjectStorage data via Reflection

Is it possible to access the data of SplObjectStorage using Reflection or some other method? When I use print_r on it, I can see there is a private property $storage with an array containing all the ...
3
votes
2answers
35 views

Strange behavior of Reflection::getProperties() with numeric keys

$obj = (object)array('a', 'b', 'c'); $refl = new \ReflectionObject($obj); $props = $refl->getProperties(\ReflectionProperty::IS_PUBLIC | \ReflectionProperty::IS_PROTECTED); foreach($props as ...
0
votes
1answer
62 views

How to exclude inherited methods from method listing, Reflection (PHP) [closed]

I'm trying to list all methods / properties of a class in PHP using reflection. The simple listing works. But it list properties and methods of the base class too. How can I filter this? tks!
0
votes
2answers
69 views

Getting class of variable

How can I figure out in what class a reference to a variable was initiated (and currently exists)? Example: <?php class MyClass { public $array = array( "this", ...
1
vote
1answer
109 views

Reflection on a doctrine2 proxy object

As far as I can see, reflection methods like property_exists() won't work on doctrine2 proxy objects. In this case, the proxy is retreived thrue a relationship $user->getCity() How can I check if ...
0
votes
2answers
124 views

Pass form field names to bind parameter at class instance

I'm using a factory(class) to present forms from a target database table - as defined at class instance. Then on submit, create a new instance of the class which then insert a new record in to the ...
0
votes
1answer
50 views

PHPUnit: Notification for untested methods

Does PHPUnit have functionality (or an external manner) to reflect on the target object, and either fail or markTestIncomplete()'ish on methods which it does not have a test for? To be clear; this ...
0
votes
2answers
147 views

php reflection get properties without getting properties of base class

So I am working with a settings class that extends a base settings class that would be similar to a "global settings". There are several services and each service has its own settings class that ...
0
votes
2answers
83 views

Match function parameters from an associative array and function call in PHP

I have an associative array in the following form: $params = array( 'paramName_4'=>'param_4', 'paramName_2'=>'param_2', // ..., 'paramName_6'=>'param_6', ); and I also ...
3
votes
3answers
84 views

Call a PHP method while ignoring type-hinting on parameters

Given: class Foo { private $bar; public function setBar(Bar $bar) { $this->bar = $bar; } } Is there any way to call setBar() with a parameter that is not an instance of ...
1
vote
2answers
39 views

How can I test to see if a variable is protected or private?

I want to write a test to make sure that a variable is protected. Is that possible? Here's what I got. /** * @expectedException Fatal error * @expectedExceptionMessage Cannot access protected ...
0
votes
1answer
42 views

Protected vars using ReflectionClass [closed]

I'm trying to read protected vars by called class. Where is the problem with my protected $test and new ReflectionClass? <?PHP class foo { protected $test = ['foo' => 'foo']; public ...
0
votes
2answers
100 views

PHP making a protected property public at runtime

Problem: I don't want to expose $myProperty, that is it shouldn't be public, but I need it to be public just for __toString(): class A { protected $myProperty; public function __toString() ...
0
votes
1answer
98 views

ReflectionException “Cannot access non-public member”, but property is accessible?

I'm changing the accessible flag of my reflection class, this way: protected function getBaseSubscriptionPeriodReflection() { $reflection = new \ReflectionClass('Me\Project\Class'); // ...
0
votes
1answer
51 views

php late static bindings: return static::CONST using reflection [duplicate]

Possible Duplicate: Accessing a class constant using a simple variable which contains the name of the constant I would like to use reflection to send an array of const as a result of a ...
2
votes
1answer
34 views

Sorting argument array for dynamically called method

I'm using reflection to dynamically call methods. $object = new $class; $reflector = new ReflectionMethod($class, $method); $reflector->invokeArgs($object, $arguments); The $arguments array ...
4
votes
1answer
127 views

Fast check if an object will be successfully instantiated in PHP?

How can I check if an object will be successfully instantiated with the given argument, without actually creating the instance? Actually I'm only checking (didn't tested this code, but should work ...
1
vote
3answers
71 views

How to programatically find public properties of a class from inside one of it's methods

I've got a class Foo with public and protected properties. Foo needs to have a non-static method, getPublicVars() that returns a list of all the public properties of Foo (this is just an example, I ...
1
vote
1answer
52 views

Get difference between instance and parent of instance's properties

abstract class foo { public $blah; } class bar extends foo { public $baz; } Given that I have a foo class that inherits from the abstract bar class how would I get an array of the instance ...
6
votes
1answer
109 views

How to get the number of parameters of a run-time determined callable?

NOTE: By virtue of writing this quesiton, I've already figured out that I was being overly enthousiastic about using a new language feature. The far cleaner solution was using a Strategy Pattern ...
2
votes
2answers
62 views

Get declared child classes of a certain abstract class, but without instantiating them

Currently I'm doing it like this: $classes = get_declared_classes(); $models = array(); foreach($classes as $class){ $class = new \ReflectionClass($class); ...
0
votes
4answers
123 views

How to invoke static method using two variables in PHP

I have two variables: $a = 'some_class'; $b = 'some_method'; What I want to do is something like this (the method is static): $a::$b; Is it possible? I've tried the reflection class, but I can't ...
2
votes
1answer
460 views

Get all public methods declared in the class, not inherited

What I want to get is the array of all public methods, and ONLY public ones, from the lowest classes in the inheritance tree. For example: class MyClass { } class MyExtendedClass extends MyClass { ...
0
votes
0answers
120 views

Cant set protected property value in super from child using ReflectionProperty

I am trying to use reflection to populate the properties of a given object. It has protected members in the super that is giving me the following error about it them not being accessible. I make ...
-1
votes
6answers
254 views

PHP calling multiple methods with one string

I have the following string: $str = "methodA()->methodB()->methodC" And i want to call that "chain" on an object $obj->$str I am currently splitting with ()-> and calling one by one, ...
3
votes
2answers
75 views

Get Model property in PHP

I want to get property name of Model class in PHP. In java I can do like this one: Model.java public class Model { private Integer id; private String name; public Integer getId() { ...
0
votes
1answer
48 views

call the get_ method of the object

I have foreach ($constructor_param_names as $reflectionParameter ){ $constructor_params[] = $reflectionParameter -> getName(); $property = $reflectionParameter -> ...
2
votes
2answers
89 views

get the constructor's arguments from the class of object [closed]

Am trying to get the constructor's arguments from the class of $object: $reflectionClass = new \ReflectionClass($object); $constructor = $reflectionClass->getConstructor(); $constructor_params = ...
0
votes
0answers
107 views

PHP class and interface interrogation using reflection

I have been working on a class to use Reflection to interrogate other PHP classes and interfaces, what I want to know from anyone with more experience of this is, is there anything else I can add, or ...
0
votes
1answer
114 views

php calling function dynamically returns null

Im trying to call a function dynamically, using call_user_func_array, but the issue I'm facing is that if the function returns boolean,Parameter variables are stored in an array, but if the function ...
2
votes
2answers
3k views

PHP: Strict Standards: Declaration of […] should be compatible with that of […] in […]

I develop with E_STRICT on. When extending a class I sometimes encounter the following fatal error... Strict Standards: Declaration of [...] should be compatible with that of [...] in [...] ...
-1
votes
2answers
229 views

Reflection in namespace php

namespace foo; class a { private $bar; public $baz; protected $alpha } $reflect=new \ReflectionClass('a'); $properties=$reflect->getProperties(ReflectionProperty::IS_PROTECTED); It will return ...
2
votes
1answer
99 views

Zend_Reflection doesn't get the docblock for certain classes

I'm trying to use Zend_Reflection to read the docblock of certain classes: Here is my code $r = new Zend_Reflection_Class($class); $docblock = $r->getDocblock(); It works for classes that ...
0
votes
1answer
78 views

Get the defining class for a constant in PHP

I am wanting to use reflection to obtain a list of the constants defined by a class in PHP. Currently using reflection I can get a list of the constants, but this also includes the ones declared in ...
0
votes
1answer
177 views

Zend Framework refresh

In zend framework,in modules i have differnt modules if XYZ person perform some action in one module how we can reflect the change for another person without reflecting it.for eg :-if XYZ person ...

1 2 3 4 5