當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Robots::save方法代碼示例

本文整理匯總了PHP中Robots::save方法的典型用法代碼示例。如果您正苦於以下問題:PHP Robots::save方法的具體用法?PHP Robots::save怎麽用?PHP Robots::save使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Robots的用法示例。


在下文中一共展示了Robots::save方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: _executeTestsNormal

 protected function _executeTestsNormal($di)
 {
     $robot = new Robots();
     $success = $robot->save(array('type' => 'mechanical', 'year' => 2018));
     $this->assertEquals($success, false);
     $this->assertEquals($robot->type, 'mechanical');
     $this->assertEquals($robot->year, 2018);
     $robot = new Robots();
     $robot->assign(array('type' => 'mechanical', 'year' => 2018));
     $this->assertEquals($robot->type, 'mechanical');
     $this->assertEquals($robot->year, 2018);
     //not assigns nonexistent fields
     $robot = new Robots();
     $robot->assign(array('field1' => 'mechanical', 'field2' => 2018));
     $this->assertEquals(empty($robot->field1), true);
     $this->assertEquals(empty($robot->field2), true);
     //white list
     $robot = new Robots();
     $robot->assign(array('type' => 'mechanical', 'year' => 2018), null, array('type'));
     $this->assertEquals($robot->type, 'mechanical');
     $this->assertEquals(empty($robot->year), true);
     //white list
     $robot = new Robots();
     $robot->assign(array('typeFromClient' => 'mechanical', 'yearFromClient' => 2018), array('typeFromClient' => 'type', 'yearFromClient' => 'year'), array('type'));
     $this->assertEquals($robot->type, 'mechanical');
     $this->assertEquals(empty($robot->year), true);
 }
開發者ID:starsw001,項目名稱:cphalcon,代碼行數:27,代碼來源:ModelsMassAssigmentTest.php

示例2: _executeTestsNormal

 protected function _executeTestsNormal($di)
 {
     $robot = new Robots();
     $success = $robot->save(array('type' => 'mechanical', 'year' => 2018));
     $this->assertEquals($success, false);
     $this->assertEquals($robot->type, 'mechanical');
     $this->assertEquals($robot->year, 2018);
     $robot = new Robots();
     $robot->assign(array('type' => 'mechanical', 'year' => 2018));
     $this->assertEquals($robot->type, 'mechanical');
     $this->assertEquals($robot->year, 2018);
 }
開發者ID:racklin,項目名稱:cphalcon,代碼行數:12,代碼來源:ModelsMassAssigmentTest.php

示例3: saveAction

 public function saveAction()
 {
     $this->db->begin();
     $robot = new Robots();
     $robot->name = "WALL·E";
     $robot->created_at = date("Y-m-d");
     if ($robot->save() == false) {
         $this->db->rollback();
         return;
     }
     $robotPart = new RobotParts();
     $robotPart->robots_id = $robot->id;
     $robotPart->type = "head";
     if ($robotPart->save() == false) {
         $this->db->rollback();
         return;
     }
     $this->db->commit();
 }
開發者ID:aodkrisda,項目名稱:phalcon-code,代碼行數:19,代碼來源:models-2364.php

示例4: RobotParts

<?php

$robotPart = new RobotParts();
$robotPart->type = "head";
$robot = new Robots();
$robot->name = "WALL·E";
$robot->created_at = date("Y-m-d");
$robot->robotPart = $robotPart;
$robot->save();
//Creates an implicit transaction to store both records
開發者ID:aodkrisda,項目名稱:phalcon-code,代碼行數:10,代碼來源:models-2124.php

示例5: Robots

<?php

$robot = new Robots();
$robot->type = 'mechanical';
$robot->name = 'Astro Boy';
$robot->year = 1952;
if ($robot->save() == false) {
    echo "Umh, We can't store robots right now ";
    foreach ($robot->getMessages() as $message) {
        echo $message;
    }
} else {
    echo "Great, a new robot was saved successfully!";
}
開發者ID:aodkrisda,項目名稱:phalcon-code,代碼行數:14,代碼來源:Phalcon_Mvc_Model-537.php

示例6: Robots

<?php

$robot = new Robots();
$robot->save($_POST);
開發者ID:aodkrisda,項目名稱:phalcon-code,代碼行數:4,代碼來源:models-1064.php

示例7: Robots

<?php

$robot = new Robots();
$robot->save($_POST, array('name', 'type'));
開發者ID:aodkrisda,項目名稱:phalcon-code,代碼行數:4,代碼來源:models-1060.php

示例8: Robots

<?php

$robot = new Robots();
$robot->save(array("type" => "mechanical", "name" => "Astro Boy", "year" => 1952));
開發者ID:aodkrisda,項目名稱:phalcon-code,代碼行數:4,代碼來源:models-1186.php


注:本文中的Robots::save方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。