Can you unset() many variables at once in PHP?

前端 未结 4 1399
醉酒成梦
醉酒成梦 2020-12-11 15:04

I have a pretty high traffic social network site,
I would like to get into the habit of unsetting large array and mysql object and even some string variables.

S

4条回答
  •  情歌与酒
    2020-12-11 15:39

    Yes.

    Your example will work just as you imagine. The method signature for unset() is as follows:

    void unset ( mixed $var [, mixed $var [, mixed $... ]] )
    

提交回复
热议问题