Breaking

Rabu, 23 Januari 2019

Functions In PHP


  • A block of code for specific tasks.
  • Save compile time –only compile once.
  • Reuse many times when needed.
  • Optimize your code.
Built-in functions like print(); date();
  • User-defined functions:
  • Function names cannot have spaces.
  • Function name must begin with letter or underscore.
E.g., call a built-in function abs();
Declaring a Function
  • You can declare a function below a call to it.
  • May have none, one, or multiple arguments each separated by a comma.
  • Write function name followed by ( ), even if the function doesn’t have any arguments.
Example-
Functions – Return Value
  • Functions may have a return value.
  • A return value in a function, returns the value to the function that may be used later on while calling a function.
  • You may need to access the value that the function returns, but you may not need to print it out, that’s why you use a return value for a function.
Example-Functions – Return Value
Example-Functions – Without Return Value
PHP built-in Functions
Sqrt(); — Take the square root of a number
Ceil(); — Take ceil of a decimal number
Floor(); — take the floor of a decimal number
Max(); — take the max number
Min(); — take the min number
Strtolower(); — convert string to lower case
Strtoupper(); — convert string to upper case

Tidak ada komentar:

Posting Komentar

Post Top Ad

Your Ad Spot

Page