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


PHP Arr::insert方法代码示例

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


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

示例1: test_insert

 /**
  * Tests Arr::insert()
  * 
  * @test
  */
 public function test_insert()
 {
     $people = array("Jack", "Jill");
     $expected = array("Humpty", "Jack", "Jill");
     $output = Arr::insert($people, "Humpty", 0);
     $this->assertEquals(true, $output);
     $this->assertEquals($expected, $people);
 }
开发者ID:bryanheo,项目名称:FuelPHP-Auth-AJAX,代码行数:13,代码来源:arr.php

示例2: testInsertsWithStringKeys

 public function testInsertsWithStringKeys()
 {
     $array = ['zero' => 'cat', 'one' => 'dog', 'two' => 'octopus', 'three' => 'raven'];
     // inserting before 'dog' which is at index 1
     // make 'dog' which was 1, into 2
     $result = Arr::insert($array, 'spider', 'one');
     // we use `same` here because they must be identical, equals would be true regardless of the order
     // UNFORTUNATELY, IT ONLY WORKS FOR NUMERICAL INDEXES
     $this->assertSame($result, ['zero' => 'cat', 'one' => 'dog', 'two' => 'octopus', 'three' => 'raven']);
 }
开发者ID:aretecode,项目名称:Support,代码行数:10,代码来源:InsertTest.php

示例3: test_insert_with_index_out_of_range

 /**
  * Tests Arr::insert()
  *
  * @test
  */
 public function test_insert_with_index_out_of_range()
 {
     $people = array("Jack", "Jill");
     $output = Arr::insert($people, "Humpty", 4);
     $this->assertFalse($output);
 }
开发者ID:quickpacket,项目名称:noclayer,代码行数:11,代码来源:arr.php


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