Gracias y saludos

Código: Seleccionar todo
class Producto
{
private $_nombre;
private $_precio;
function __construct()
{
$args = func_get_args();
$nargs = func_num_args();
switch($nargs)
case 1:
self::__construct1($args[0]);
break;
case 2:
self::__construct2($args[0], $args[1]);
break;
}
}
function __construct1($valor)
{
$this->_nombre = $valor;
}
function __construct2($valor1, $valor2)
{
$this->_nombre = $valor1;
$this->_precio = $valor2;
}
//.... etc, etc, ... si precisas mas cosas....
}
Código: Seleccionar todo
$azucar = new Producto('Azucar 1kg');
$coke = new Prodcuto('Coca Cola 1LT', 1.50);
Código: Seleccionar todo
class Producto
{
private $_nombre;
private $_precio;
public static function crearNombre($nombre)
{
$producto = new Producto();
$producto->_nombre = $nombre;
return $producto;
}
public static function crearNombrePrecio($nombre, precio);
{
$producto = new Producto();
$producto->_nombre = $nombre;
$producto->_precio = $precio;
return $producto;
}
}