Raise a number to the power of another number

Use the exponentiation operator: **

  echo 4 ** 2;       // Prints: 16
  echo 2.89 ** 3.2;  // Prints: 29.845104015297

Squared

  //Print 8 squared
  echo 8 ** 2;   //Prints: 64