jueves, 12 de abril de 2012

Instancias en php

<?php

class Circle
{
  public $radius;

  public function calcArea($radius)
  {
    return pi() * pow($radius, 2);
  }
}

// Create a new instance of Circle
$c = new Circle();

// Change a property
$c->radius = 5;

// Use a method
echo 'The area of the circle is ' . $c->calcArea(5);

?>

No hay comentarios:

Publicar un comentario