Overview of PHP shorthand

后端 未结 9 1367
小鲜肉
小鲜肉 2020-12-12 15:32

I\'ve been programming in PHP for years now, but I\'ve never learned how to use any shorthand. I come across it from time to time in code and have a hard time reading it, s

9条回答
  •  一个人的身影
    2020-12-12 16:00

    Since 5.4 you also have array literals so you no longer need to write:

    $myArray = array('some', 'list', 'of', 'stuff');
    

    You can just write:

    $myArray = ['some', 'list', 'of', 'stuff'];
    

    Not a huge difference but pretty nice.

提交回复
热议问题