当前位置: 首页>>代码示例>>PHP>>正文


PHP Store::update方法代码示例

本文整理汇总了PHP中Store::update方法的典型用法代码示例。如果您正苦于以下问题:PHP Store::update方法的具体用法?PHP Store::update怎么用?PHP Store::update使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Store的用法示例。


在下文中一共展示了Store::update方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: testUpdate

 function testUpdate()
 {
     $store_name = "Beacons Closet";
     $new_store = new Store($store_name);
     $new_store->save();
     $new_store->setStoreName("Buffalo Exchange");
     $new_store->update();
     $result = Store::getAll();
     $this->assertEquals($new_store, $result[0]);
 }
开发者ID:jschold,项目名称:shoe_stores,代码行数:10,代码来源:StoreTest.php

示例2: Store

 function test_update()
 {
     $test_name = "Nordstrom";
     $test_id = 1;
     $test_store = new Store($test_name, $test_id);
     $test_store->save();
     $new_name = "Bloomingdales";
     $test_store->update($new_name);
     $result = Store::getAll();
     $this->assertEquals($new_name, $result[0]->getName());
 }
开发者ID:juliocesardiaz,项目名称:Shoes,代码行数:11,代码来源:StoreTest.php

示例3: testUpdate

 function testUpdate()
 {
     //Arrange
     $store_name = "Portland Running Company";
     $id = 1;
     $test_store = new Store($store_name, $id);
     $test_store->save();
     $new_store_name = "New Balance";
     //Act
     $test_store->update($new_store_name);
     //Assert
     $this->assertEquals($new_store_name, $test_store->getStoreName());
 }
开发者ID:kennygrage,项目名称:dish,代码行数:13,代码来源:StoreTest.php

示例4: testUpdate

 function testUpdate()
 {
     // Arrange
     $name = "Get Your Kicks Co.";
     $test_Store = new Store($name);
     $test_Store->save();
     $new_name = "Get Your Kicks Yo";
     // Act
     $test_Store->update($new_name);
     $result = $test_Store->getName();
     // Assert
     $this->assertEquals($new_name, $result);
 }
开发者ID:ben-pritchard,项目名称:Epicodus-Assessment---PHP-Many-to-Many-in-Silex,代码行数:13,代码来源:storeTest.php

示例5: testUpdate

 function testUpdate()
 {
     //Arrange
     $id = null;
     $store_name = "Nike";
     $test_store = new Store($id, $store_name);
     $test_store->save();
     $new_store_name = "Camera World";
     //Act
     $test_store->update($new_store_name);
     //Assert
     $this->assertEquals($test_store->getStoreName(), $new_store_name);
 }
开发者ID:sammartinez,项目名称:shoes,代码行数:13,代码来源:StoreTest.php

示例6: Store

 function test_update()
 {
     //Arrange
     $store_name = "PLZ BUY SHOES HERE";
     $id = 1;
     $test_store = new Store($store_name, $id);
     $test_store->save();
     $new_store_name = "KOOL SHOES HERE";
     //Act
     $test_store->update($new_store_name);
     //Assert
     $this->assertEquals("KOOL SHOES HERE", $test_store->getStoreName());
 }
开发者ID:nathanhwyoung,项目名称:shoe_stores,代码行数:13,代码来源:StoreTest.php

示例7: testUpdate

 function testUpdate()
 {
     //Arrange
     $id = null;
     $store_name = "Footlocker";
     $test_store = new Store($store_name, $id);
     $test_store->save();
     $new_store_name = "Foot locker";
     //Act
     $test_store->update($new_store_name);
     //Assert
     $result = $test_store->getStoreName();
     $this->assertEquals($new_store_name, $result);
 }
开发者ID:austinblanchard,项目名称:shoe_stores,代码行数:14,代码来源:StoreTest.php

示例8: store_edit

function store_edit()
{
    $store = new Store();
    $storeid = isset($_POST['storeid']) ? $_POST['storeid'] : "";
    $store->id = $storeid;
    $store->name = isset($_POST['name']) ? $_POST['name'] : "";
    $store->address = isset($_POST['address']) ? $_POST['address'] : "";
    $store->contact = isset($_POST['contact']) ? $_POST['contact'] : "";
    $store->phone = isset($_POST['phone']) ? $_POST['phone'] : "";
    $store->active = isset($_POST['active']) ? 1 : 0;
    $store->fax = isset($_POST['fax']) ? $_POST['fax'] : "";
    $store->email = isset($_POST['email']) ? $_POST['email'] : "";
    $store->description = isset($_POST['description']) ? $_POST['description'] : "";
    if ($storeid == "new") {
        if ($store->add()) {
            header("location: index.php?pages=store_detail&store={$store->id}");
            exit;
        }
    } else {
        return $store->update();
    }
    return false;
}
开发者ID:BackupTheBerlios,项目名称:rinventory-svn,代码行数:23,代码来源:store.php

示例9: Store

 function test_update()
 {
     //Arrange
     $retailer = "Nordstrom";
     $address = "1234 SW Main Street";
     $phone = "123-456-7890";
     $id = null;
     $test_store = new Store($retailer, $address, $phone, $id);
     $test_store->save();
     $new_retailer = "Macys";
     $new_address = "400 SW 6th Avenue";
     $new_phone = "888-888-8888";
     //Act
     $test_store->update($new_retailer, $new_address, $new_phone);
     //Assert
     $this->assertEquals($new_retailer, $test_store->getRetailer());
     $this->assertEquals($new_address, $test_store->getAddress());
     $this->assertEquals($new_phone, $test_store->getPhone());
 }
开发者ID:jcubed22,项目名称:Shoes,代码行数:19,代码来源:StoreTest.php

示例10: Store

 function test_store_update()
 {
     //Arrange
     $store_name2 = "Goody New Shoes";
     $test_store2 = new Store($store_name2);
     $test_store2->save();
     $store_name = "Groos Shoes";
     $test_store = new Store($store_name);
     $test_store->save();
     $new_name = "Foot Action";
     //Act
     $test_store->update($new_name);
     //Assert
     $this->assertEquals($new_name, $test_store->getStoreName());
 }
开发者ID:CharlesAMoss,项目名称:epic_Shoes,代码行数:15,代码来源:StoreTest.php

示例11: Store

 function test_updateLocation()
 {
     //Arrange
     $name = "The Shoe Store";
     $location = "432 SW Tootsies Ave";
     $phone = "503-555-5555";
     $test_store = new Store($name, $location, $phone);
     $test_store->save();
     $column_to_update = "location";
     $new_info = "100 Whatever Lane";
     //Act
     $test_store->update($column_to_update, $new_info);
     //Assert
     $result = Store::getAll();
     $this->assertEquals("100 Whatever Lane", $result[0]->getLocation());
 }
开发者ID:alexdbrown,项目名称:shoe_store,代码行数:16,代码来源:StoreTest.php

示例12: testUpdate

 function testUpdate()
 {
     //Arrange
     $store_name = "Shoes Galore";
     $test_store = new Store($store_name);
     $test_store->save();
     $new_store_name = "Save Our Soles";
     //Act
     $test_store->update($new_store_name);
     $result = $test_store->getStoreName();
     //Assert
     $this->assertEquals("Save Our Soles", $result);
 }
开发者ID:kylepratuch,项目名称:Shoe_Store,代码行数:13,代码来源:StoreTest.php

示例13: testUpdate

 function testUpdate()
 {
     //Arrange
     $store_name = "Norstrom";
     $id = null;
     $test_store = new Store($store_name, $id);
     $test_store->save();
     $new_name = "Ikea";
     //Act
     $test_store->update($new_name);
     //Assert
     $this->assertEquals($new_name, $test_store->getStoreName());
 }
开发者ID:kellimargaret,项目名称:Shoe_Stores,代码行数:13,代码来源:StoreTest.php

示例14: Store

 function test_update()
 {
     //Arrange
     $store_name = "The Foot Store";
     $test_store = new Store($store_name);
     $test_store->save();
     //Act
     $new_store_name = "The Store of Feet";
     $test_store->update($new_store_name);
     //Assert
     $this->assertEquals("The Store of Feet", $test_store->getStoreName());
 }
开发者ID:kevintokheim,项目名称:Shoe_Store,代码行数:12,代码来源:StoreTest.php

示例15: testUpdate

 function testUpdate()
 {
     //Arrange
     $store_name = "Chill N Fill";
     $id = 1;
     $category = "bar";
     $region = "North Portland";
     $address = "5215 N Lombard Portland, OR 97203";
     $test_store = new Store($store_name, $category, $region, $address, $id);
     $test_store->save();
     $new_store_name = "Fill N Chill";
     $new_category = "bottleshop";
     $new_region = "SW Portland";
     $new_address = "5215 N Chautauqua Blvd Portland, OR 97203";
     //Act
     $test_store->update($new_store_name, $new_category, $new_region, $new_address);
     //Assert
     $this->assertEquals("Fill N Chill", $test_store->getStoreName());
     $this->assertEquals("bottleshop", $test_store->getCategory());
     $this->assertEquals("SW Portland", $test_store->getRegion());
     $this->assertEquals("5215 N Chautauqua Blvd Portland, OR 97203", $test_store->getAddress());
 }
开发者ID:bborealis,项目名称:growler,代码行数:22,代码来源:StoreTest.php


注:本文中的Store::update方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。