perl style in php ?
From: crub (crub_at_volcanomail.com)
Date: 10/31/04
- Next message: Janwillem Borleffs: "Re: perl style in php ?"
- Previous message: Jurgy: "Mail() does not function on FreeBSD and PHP and Qmail or Postfix"
- Next in thread: Janwillem Borleffs: "Re: perl style in php ?"
- Reply: Janwillem Borleffs: "Re: perl style in php ?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: 31 Oct 2004 07:59:49 -0800
Often I just want to be able to get at a single element from a
function that returns an array. For example, if I just want the
current year I need to write:
$today = getdate();
$year = $today['year'];
Call me lazy but this is two steps to return a single value.
In perl I can nest these two step together into something like:
$year = ( $getdate() )['year'];
I've tried to get several variations of this to work in php but I
don't seem to be having any luck.
Is this style possible in php?
Thanks,
crub
- Next message: Janwillem Borleffs: "Re: perl style in php ?"
- Previous message: Jurgy: "Mail() does not function on FreeBSD and PHP and Qmail or Postfix"
- Next in thread: Janwillem Borleffs: "Re: perl style in php ?"
- Reply: Janwillem Borleffs: "Re: perl style in php ?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|