Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 398 Bytes

0126.md

File metadata and controls

15 lines (12 loc) · 398 Bytes

Which of the following options shows the correct format of fetching class variables using the $this variable?

  • A) $this->varname
  • B) $this.$varname
  • C) $this.varname
  • D) $this->$varname
Answer

Answer: A