Tengo un error y no se porque me sale. Al parecer no me devuelve el valor de un tipo de variable. Ese $pelota = true no se porque no le llega a la funcion.
Código PHP:
<?php
require_once 'Pulpo.php';
//Segun dice el index se encuentra mal indentado
class Index{
public function ejecutarIndex()
{
$pulpo = new Pulpo('Elvis', 1, 8, 'purpura');
echo el pulpo . $pulpo->recivePelota($pelota=true);
}
}
$index = new Index();
$index->ejecutarIndex();
Código PHP:
<?php
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/**
* Description of Pulpo
*
* @author Arts
*/
class Pulpo
{
//put your code here
//Atributos
private $_nombre;
private $_numeroDeOjos;
private $_numeroDeBrazos;
private $_color;
// Contructor
public function __construct($nombre,$numeroDeOjos,$numeroDeBrazos,$color)
{
$this->_nombre = $nombre;
$this->_numeroDeOjos = $numeroDeOjos;
$this->_numeroDeBrazos = $numeroDeBrazos;
$this->_color = $color;
}
// Metodos
public function recivePelota($pelota)
{
if ($pelota)
hacerMalavares();
}
public function hacerMalavares()
{
return 'hace malavares';
}
}