up vote 9 down vote favorite
3
share [g+] share [fb]

What I would like to do is something like this:

$method_result = new Obj()->method();

Instead of having to do:

$obj = new Obj();
$method_result = $obj->method();

The result doesn't actually matter to me in my specific case. But, is there a way to do this?

link|improve this question

feedback

6 Answers

up vote 13 down vote accepted

You cannot do what you are asking ; but you can "cheat", using the fact that, in PHP, you can have a function that has the same name as a class ; those names won't conflict.

So, if you declared a class like this :

class Test {
    public function __construct($param) {
        $this->_var = $param;
    }
    public function myMethod() {
        return $this->_var * 2;
    }
    protected $_var;
}

You can then declare a function that returns an instance of that class -- and has exactly the same name as the class :

function Test($param) {
    return new Test($param);
}

And now, it becomes possible to use a one-liner, like you asked -- only thing is you are calling the function, thus not using new :

$a = Test(10)->myMethod();
var_dump($a);

And it works : here, I'm getting :

int 20

as output.


And, better, you can put some phpdoc on your function :

/**
 * @return Test
 */
function Test($param) {
    return new Test($param);
}

This way, you'll even have hints in your IDE -- at least, with Eclipse PDT 2.x ; see the screeshot :



Edit 2010-11-30 : Just for information, a new RFC has been submitted, a few days ago, that proposes to add this feature to one of the future versions of PHP.

See : Request for Comments: Instance and method call/property access

So, maybe doing things like these will be possible in PHP 5.4 or another future version :

(new foo())->bar()
(new $foo())->bar
(new $bar->y)->x
(new foo)[0]
link|improve this answer
nice! didn’t know that – knittl Sep 9 '09 at 22:51
Me neither, thanks. – Ropstah Sep 10 '09 at 9:41
Wow, very nice! I didn't know that. – Pim Jager Sep 10 '09 at 19:13
Thanks ;-) I don't recall where I saw this trick first... But I thought it was nice/fun, and have used it a couple of times since ^^ – Pascal MARTIN Sep 10 '09 at 19:25
almost 1 year is gone and still this feature totally lacks in php :( – yes123 May 13 '11 at 9:45
feedback

No, this is not possible.
You need to assign the instance to a variable before you can call any of it's methods.

If you really wan't to do this you could use a factory as ropstah suggests:

class objFactory{
  public static function newObj(){
      return new Obj();
  }
}
objFacotry::newObj()->method();
link|improve this answer
3  
Pim's answer is correct. Alternatively you could use static functions if you do not wish to create an instance of the object – Mark Sep 9 '09 at 22:42
What's a objFacotry? ;) – Ropstah Sep 10 '09 at 9:42
feedback

You could use a static factory method to produce the object:

ObjectFactory::NewObj()->method();
link|improve this answer
feedback

How about:

$obj = new Obj(); $method_result = $obj->method(); ?

:P

link|improve this answer
Great answer :P Made me laugh. – Chris Mazzola Sep 9 '09 at 22:43
feedback

You can do it more universally by defining an identity function:

function identity($x) {
    return $x;
}

identity(new Obj)->method();

That way you don't need to define a function for each class.

link|improve this answer
feedback

I, too, was looking for a one-liner to accomplish this as part of a single expression for converting dates from one format to another. I like doing this in a single line of code because it is a single logical operation. So, this is a little cryptic, but it lets you instantiate and use a date object within a single line:

$newDateString = ($d = new DateTime('2011-08-30') ? $d->format('F d, Y') : '');

Another way to one-line the conversion of date strings from one format to another is to use a helper function to manage the OO parts of the code:

function convertDate($oldDateString,$newDateFormatString) {
    $d = new DateTime($oldDateString);
    return $d->format($newDateFormatString);
}

$myNewDate = convertDate($myOldDate,'F d, Y');

I think the object oriented approach is cool and necessary, but it can sometimes be tedious, requiring too many steps to accomplish simple operations.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.