intechost / encoder
Custom encoding for intechost
Installs: 21
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/intechost/encoder
Requires
- php: >=7.4
This package is auto-updated.
Last update: 2026-02-16 15:25:38 UTC
README
This repository provides a simple implementation of text encoding and decoding using the IntecHost\Encoder package.
Usage
Below is the example code for encoding and decoding text.
<?php require 'vendor/autoload.php'; use IntecHost\Encoder; // Encoder Function function intechost_encode($text) { return Encoder::encode($text); } // Decoder Function function intechost_decode($text) { return Encoder::decode($text); } // Execution $sagar = intechost_encode("Hello Bro"); $decoder = intechost_decode($sagar); echo "Encode: $sagar and Decode: $decoder";