Skip to main content
deleted 14 characters in body
Source Link
NullUserException
  • 85.8k
  • 31
  • 212
  • 239

You can use minus character in variable names like this:

class style { .... function set_bg_colour($c) { $this->{'background-color'} = $c; } } 

Why use it? No idea: maybe for a CSS model? Or some weird JSON you need to output. It's an odd feature :)

monk.e.boy

You can use minus character in variable names like this:

class style { .... function set_bg_colour($c) { $this->{'background-color'} = $c; } } 

Why use it? No idea: maybe for a CSS model? Or some weird JSON you need to output. It's an odd feature :)

monk.e.boy

You can use minus character in variable names like this:

class style { .... function set_bg_colour($c) { $this->{'background-color'} = $c; } } 

Why use it? No idea: maybe for a CSS model? Or some weird JSON you need to output. It's an odd feature :)

added 4 characters in body
Source Link
z-boss
  • 17.7k
  • 13
  • 55
  • 82

You can use minus character in variable namesminus character in variable names like this:

class style { .... function set_bg_colour($c) { $this->{'background-color'} = $c; } } 

Why use it? No idea: maybe for a CSS model? Or some weird JSON you need to output. It's an odd feature :)

monk.e.boy

You can use minus character in variable names like this:

class style { .... function set_bg_colour($c) { $this->{'background-color'} = $c; } } 

Why use it? No idea: maybe for a CSS model? Or some weird JSON you need to output. It's an odd feature :)

monk.e.boy

You can use minus character in variable names like this:

class style { .... function set_bg_colour($c) { $this->{'background-color'} = $c; } } 

Why use it? No idea: maybe for a CSS model? Or some weird JSON you need to output. It's an odd feature :)

monk.e.boy

Post Made Community Wiki
Source Link
monk-e-boy
monk-e-boy

You can use minus character in variable names like this:

class style { .... function set_bg_colour($c) { $this->{'background-color'} = $c; } } 

Why use it? No idea: maybe for a CSS model? Or some weird JSON you need to output. It's an odd feature :)

monk.e.boy