Download the PHP package maxoplata/string-thing without Composer
On this page you can find all versions of the php package maxoplata/string-thing. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download maxoplata/string-thing
More information about maxoplata/string-thing
Files in maxoplata/string-thing
Package string-thing
Short Description A lightweight library for encoding and decoding strings using various patterns.
License MIT
Informations about the package string-thing
StringThing
StringThing is a lightweight library for encoding and decoding strings using various patterns.
Installation
Usage
StringThing provides an API for encoding and decoding strings. To use it, import the StringThing class and create a new instance with an array of patterns in the order you want to use them:
Patterns
StringThing patterns currently support the following operations:
split-halves
: Splits the string into two halves and swaps them.Abcd12
=>d12Abc
reverse
: Reverses the order of the characters in the string.Abcd12
=>21dcbA
shift
: Shifts the characters in the string up by 1 in the ASCII table.Abcd12
=>Bcde23
swap-case
: Swaps uppercase & lowercase characters in the string.Abcd12
=>aBCD12
rotate
: Shifts the string 1 position to the right.Abcd12
=>2Abcd1
To use a specific pattern, pass it as an argument to the StringThing constructor:
Example: Encoding Passwords for Secure Storage
StringThing can be used to encode passwords before hashing them and storing them in a database, making it more difficult for an attacker to retrieve the original password even if they gain access to the database.
Here's an example of how to use StringThing to encode a password before hashing it with bcrypt when working with passwords in a database: