How to name variables

前端 未结 24 1271
抹茶落季
抹茶落季 2020-12-01 00:37
  • What rules do you use to name your variables?
  • Where are single letter vars allowed?
  • How much info do you put in the name?
  • How about for exam
24条回答
  •  萌比男神i
    2020-12-01 01:18

    I do a lot of php in nowadays, It was not always like that though and I have learned a couple of tricks when it comes to variable naming.

    //this is my string variable $strVar = "";

    //this would represent an array $arrCards = array();

    //this is for an integer $intTotal = NULL:

    //object $objDB = new database_class();

    //boolean $blValid = true;

提交回复
热议问题