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


PHP Store::getAll方法代码示例

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


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

示例1: find

 static function find($searchId)
 {
     $stores_returned = Store::getAll();
     foreach ($stores_returned as $store) {
         if ($searchId == $store->getId()) {
             return $store;
         }
     }
 }
开发者ID:jschold,项目名称:shoe_stores,代码行数:9,代码来源:Store.php

示例2: find

 static function find($id)
 {
     $db_stores = Store::getAll();
     foreach ($db_stores as $store) {
         if ($id == $store->getId()) {
             return $store;
         }
     }
     return null;
 }
开发者ID:ben-pritchard,项目名称:Epicodus-Assessment---PHP-Many-to-Many-in-Silex,代码行数:10,代码来源:Store.php

示例3: testGetAll

 function testGetAll()
 {
     $name = "LuLus";
     $test_store = new Store($name);
     $test_store->save();
     $name2 = "Barts";
     $test_store2 = new Store($name);
     $test_store2->save();
     $result = Store::getAll();
     $this->assertEquals([$test_store, $test_store2], $result);
 }
开发者ID:alexMcosta,项目名称:Shoes_Brands,代码行数:11,代码来源:StoreTest.php

示例4: find

 static function find($search_id)
 {
     $found_store = null;
     $all_stores = Store::getAll();
     foreach ($all_stores as $store) {
         if ($store->getId() == $search_id) {
             $found_store = $store;
         }
     }
     return $found_store;
 }
开发者ID:sammartinez,项目名称:Silex-Bootstrap,代码行数:11,代码来源:Store.php

示例5: find

 static function find($search_id)
 {
     $found_brand = null;
     $brands = Store::getAll();
     foreach ($brands as $brand) {
         $brand_id = $brand->getId();
         if ($brand_id == $search_id) {
             $found_brand = $brand;
         }
     }
     return $found_brand;
 }
开发者ID:kellimargaret,项目名称:Shoe_Stores,代码行数:12,代码来源:Brand.php

示例6: findByName

 static function findByName($search_name)
 {
     $found_store = null;
     $stores = Store::getAll();
     foreach ($stores as $store) {
         $store_name = $store->getName();
         if ($store_name == $search_name) {
             $found_store = $store;
         }
     }
     return $found_store;
 }
开发者ID:bdspen,项目名称:ShoeStore,代码行数:12,代码来源:Store.php

示例7: test_deleteAll

 function test_deleteAll()
 {
     //Arrange
     $store_name = "Flying Shoes";
     $test_store = new Store($store_name);
     $test_store->save();
     //Act
     Store::deleteAll();
     $result = Store::getAll();
     //Assert
     $this->assertEquals([], $result);
 }
开发者ID:kevintokheim,项目名称:Shoe_Store,代码行数:12,代码来源:StoreTest.php

示例8: find

 static function find($search_id)
 {
     $found_store = NULL;
     $stores = Store::getAll();
     foreach ($stores as $store) {
         $store_id = $store->getId();
         if ($store_id == $search_id) {
             $found_store = $store;
         }
     }
     return $found_store;
 }
开发者ID:jlbethel,项目名称:Shoes,代码行数:12,代码来源:Store.php

示例9: find

 static function find($search_id)
 {
     $found = null;
     $stores = Store::getAll();
     foreach ($stores as $store) {
         $store_id = $store->getId();
         if ($store_id == $search_id) {
             $found = $store;
         }
         //end of if
     }
     //end foreach
     return $found;
 }
开发者ID:CharlesAMoss,项目名称:epic_Shoes,代码行数:14,代码来源:Store.php

示例10: test_delete

 function test_delete()
 {
     $test_name = "Nordstrom";
     $test_id = 1;
     $test_store = new store($test_name, $test_id);
     $test_store->save();
     $test_name2 = "Bloomingdales";
     $test_id2 = 2;
     $test_store2 = new Store($test_name2, $test_id2);
     $test_store2->save();
     $test_store->delete();
     $result = Store::getAll();
     $this->assertEquals([$test_store2], $result);
 }
开发者ID:juliocesardiaz,项目名称:Shoes,代码行数:14,代码来源:StoreTest.php

示例11: testDeleteStore

 function testDeleteStore()
 {
     //Arrange
     $store_name = "Norstrom";
     $id = null;
     $test_store = new Store($store_name, $id);
     $test_store->save();
     $another_store = "Madewell";
     $test_store2 = new Store($another_store, $id);
     $test_store2->save();
     //Act
     $test_store->delete();
     $result = Store::getAll();
     //Assert
     $this->assertEquals([$test_store2], $result);
 }
开发者ID:kellimargaret,项目名称:Shoe_Stores,代码行数:16,代码来源:StoreTest.php

示例12: testDeleteAll

 function testDeleteAll()
 {
     //Arrange
     $name = "Clogs-N-More";
     $id = 1;
     $test_store = new Store($name, $id);
     $test_store->save();
     $name2 = "Shoe Depot";
     $id2 = 1;
     $test_store2 = new Store($name2, $id2);
     $test_store2->save();
     //Act
     Store::deleteAll();
     $result = Store::getAll();
     //Assert
     $this->assertEquals([], $result);
 }
开发者ID:bborealis,项目名称:shoes,代码行数:17,代码来源:StoreTest.php

示例13: test_delete

 function test_delete()
 {
     //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();
     $retailer2 = "Macys";
     $address2 = "400 SW 6th Avenue";
     $phone2 = "888-888-8888";
     $test_store2 = new Store($retailer2, $address2, $phone2, $id);
     $test_store2->save();
     //Act
     $test_store->delete();
     $result = Store::getAll();
     //Assert
     $this->assertEquals($test_store2, $result[0]);
 }
开发者ID:jcubed22,项目名称:Shoes,代码行数:20,代码来源:StoreTest.php

示例14: test_delete

 function test_delete()
 {
     //Arrange
     $id = null;
     $store_name = "New Seasons";
     $test_store = new Store($id, $store_name);
     $test_store->save();
     $id2 = null;
     $store_name2 = "Whole Foods";
     $test_store2 = new Store($id2, $store_name2);
     $test_store2->save();
     //Act
     $test_store->delete();
     $result = Store::getAll();
     //Assert
     $this->assertEquals($test_store2, $result[0]);
 }
开发者ID:sammartinez,项目名称:shoes,代码行数:17,代码来源:StoreTest.php

示例15: testDeleteAll

 function testDeleteAll()
 {
     //Arrange
     $name = "shoe store";
     $location = "1234 nw 1st street";
     $id = 4;
     $test_store = new Store($name, $location, $id);
     $test_store->save();
     $name2 = "other store";
     $location2 = "5555 sw 2nd street";
     $id2 = 3;
     $test_store2 = new Store($name2, $location2, $id2);
     $test_store2->save();
     //Act
     Store::deleteAll();
     $result = Store::getAll();
     //Assert
     $this->assertEquals([], $result);
 }
开发者ID:bencasalino,项目名称:cr4,代码行数:19,代码来源:StoreTest.php


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