PHP Classes

File: vendor/pimple/pimple/ext/pimple/tests/013.phpt

Recommend this page to a friend!
  Classes of uche   Farm Price   vendor/pimple/pimple/ext/pimple/tests/013.phpt   Download  
File: vendor/pimple/pimple/ext/pimple/tests/013.phpt
Role: Example script
Content type: text/plain
Description: Example script
Class: Farm Price
API to get the prices from agriculture markets
Author: By
Last change:
Date: 2 years ago
Size: 368 bytes
 

Contents

Class file image Download
--TEST--
Test keys()
--SKIPIF--
<?php if (!extension_loaded("pimple")) print "skip"; ?>
--FILE--
<?php

$p
= new Pimple\Container();

var_dump($p->keys());

$p['foo'] = 'bar';
$p[] = 'foo';

var_dump($p->keys());

unset(
$p['foo']);

var_dump($p->keys());
?>
--EXPECTF--
array(0) {
}
array(2) {
  [0]=>
  string(3) "foo"
  [1]=>
  int(0)
}
array(1) {
  [0]=>
  int(0)
}