Feedback

PHP Methods

PHP Methods

Methods are function or procedures declared by the developer, that helps when applying the routines. Using methods in the applications allows to reuse your code throughout the application, optimizing the development experience.

Creating a new method

PHP method creation Interface

  • Give the method a name and click Create. As in the image below.

PHP methods are incorporated into the same class, so it is not possible to use two functions with the same name even when used in different methods.

Include Method.

  • Methods can receive parameters.

Include Method.

  • Add the amount of variables:

PHP method parameter definition

  • Defining the variables: Defining the variables

  • Name : Type in the variable’s name.
  • Type : Selecting the type of variables: For Value or For Reference.
  • Value Standard : The parameter’s value used to initialize when calling the method.

References allows to create a second name for a variable that you can use to read and modify the variable’s original information.

  • Editing a parameter:

PHP method parameter management Interface

  • Check all parameters : Checking all the parameters in the parameter list.
  • Uncheck all parameters : Uncheck all the parameters in the parameter list.
  • Edit the selected variable : Edit the selected parameter of the list.
  • Deleting the selected variable : Deletes the selected variable of the list.