Are there pointers in php?

后端 未结 9 1917
余生分开走
余生分开走 2020-11-28 04:06

What does this code mean? Is this how you declare a pointer in php?

$this->entryId = $entryId;
9条回答
  •  庸人自扰
    2020-11-28 04:29

    entryId is an instance property of the current class ($this) And $entryId is a local variable

提交回复
热议问题