CauseFX 3295b491ca update guzzle %!s(int64=5) %!d(string=hai) anos
..
src 3295b491ca update guzzle %!s(int64=5) %!d(string=hai) anos
tests 3295b491ca update guzzle %!s(int64=5) %!d(string=hai) anos
.travis.yml 3295b491ca update guzzle %!s(int64=5) %!d(string=hai) anos
CONTRIBUTING.md 3295b491ca update guzzle %!s(int64=5) %!d(string=hai) anos
README.md 3295b491ca update guzzle %!s(int64=5) %!d(string=hai) anos
composer.json 3295b491ca update guzzle %!s(int64=5) %!d(string=hai) anos
phpunit.php 3295b491ca update guzzle %!s(int64=5) %!d(string=hai) anos
phpunit.xml 3295b491ca update guzzle %!s(int64=5) %!d(string=hai) anos

README.md

String Encode

Version 1.0.1

String Encode is a simple PHP wrapper package to facilitate the encoding of strings in different charsets.

Install

This package can be found on packagist and is best loaded using composer. It does require php 7.1 or higher, so keep that in consideration.

Usage

This is a really simple package so there is not much to say about it. The following is just about the only usage for this package at the moment.

use stringEncode\Encode;

$str    = "Calendrier de l'avent façon Necta!"
$encode = new Encode;
$encode->detect($str);
$newstr = $encode->convert($str);
echo $newstr; // "Calendrier de l'avent façon Necta!" in UTF-8 encoding (default)

As you can see, it is a very simple encoding converter.