Jump to content
  • 0

Нужна помощь по переводу из php в javascript, плиииз)


Nesty
 Share

Question

<?php

class Domino {

   

 public $domino;  

  function __construct($domino) {

        $this->domino=$domino;

    }

public function getDomino(){

    return $this->domino;

}

public function setDomino($domino){

    $this->domino=$domino;

}

public function printDomino(){

    echo $this->getDomino().'<br/>';

}

}

?>

Link to comment
Share on other sites

12 answers to this question

Recommended Posts

  • 0

Спасибо большое, очень помогли... но это не все... еще нужно классы описать...
Пожалуйста)

<?php  class Player {      public $hand=array();   public $numHand;   public $countDominoInHand;   public $score;   public function printHand() {          //var_dump($this->getHand());        foreach($this->getHand() as $ff)        echo  ' '.$ff;     echo '<br/>getcountDominoInHand() - ';     echo $this->getcountDominoInHand();     echo '<br/>getnumHand() -';     echo $this->getnumHand();     echo '<br/>--end printHand()<br/>';   }       function __construct($numHand) {       $this->setnumHand($numHand);       $this->score=0;      }   public function getScore() {       return $this->score; }    public function setScore($score){        $this->score=$score;    }   public function removeFromHand($domino) {       unset($this->hand[$domino]); }  public function shuffleHand() {       shuffle($this->hand); }   public function getHand() {       return $this->hand; }    public function setHand($domino){     $this->hand[]=$domino->getDomino();    }   public function getnumHand() {       return $this->numHand; }   public function setnumHand($numHand){       $this->numHand=$numHand;    }   public function getcountDominoInHand() {       return count($this->hand); }   public function clearHand() {      $this->hand=NULL; }  }  ?>
Edited by Veseloff
Код необходимо заключать в блок кода
Link to comment
Share on other sites

  • 0

Ну так не делается. Одно дело когда есть какой-то конкретный вопрос, а другое — когда надо сделать работу за вас. Я привёл пример как можно реализовать объект с методами на js и как это работает. Дальше — сами. Если что-то конкретное будет непонятно — спрашивайте. Ну и вот почитайте http://learn.javascript.ru/

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy