Re: [Hampshire] [OT] Can anyone help me with some PHP?

Etusivu

Vastaa
Lähettäjä: Kevin Haynes
Päiväys:  
Vastaanottaja: Hampshire LUG Discussion List
Aihe: Re: [Hampshire] [OT] Can anyone help me with some PHP?
On Saturday 21 April 2007, John Paul Wallington wrote:
> $employees[0] = _('None');


Not sure exactly what you are doing out of context. The _('None') is being
interpreted as a function because of the (). If you are assigning the
value 'None' to an array element then a simple $employees[0] = 'None' will
do.

Kevin Haynes