2017 © Pedro Peláez
 

library buffer

Context-aware implementation of explode().

image

ilya/buffer

Context-aware implementation of explode().

  • Wednesday, May 14, 2014
  • by ilya.s
  • Repository
  • 1 Watchers
  • 0 Stars
  • 12 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Buffer

Buffer is a context-aware implementation of explode(), the string function from PHP., (*1)

Installation

Open up your terminal, cd to your project directory and type:, (*2)

# run this command if you have Composer installed globally on your machine
composer require "ilya/buffer:~1"

# or run this command if you have it installed locally
php composer.phar require "ilya/buffer:~1"

Press Enter and give Composer just a second to install the package as your project's dependency., (*3)

How to use this thing

Let's get started by creating an instance of Buffer:, (*4)

$buffer = new Buffer\Buffer('foo:"bar:baz":wow');

Now, tell Buffer that the " character has a special meaning:, (*5)

$buffer->beAwareOf("\"");

Finally, split the string you've passed to the constructor by ::, (*6)

$buffer->explode(':'); // => ['foo', 'bar:baz', 'wow']

Alright, that's basically it., (*7)

License

Buffer is licensed under the MIT license., (*8)

The Versions

14/05 2014

dev-master

9999999-dev

Context-aware implementation of explode().

  Sources   Download

MIT

The Development Requires

context aware explode implementation

14/05 2014

1.0.0

1.0.0.0

Context-aware implementation of explode().

  Sources   Download

MIT

The Development Requires

context aware explode implementation