Month: April 2023
Azure Key Vault Library
This library allows easy integration of Azure Key Vault in PHP applications. https://github.com/wapacro/az-keyvault-php
Find index of last occurrence of a sub-string using T-SQL
https://stackoverflow.com/questions/1024978/find-index-of-last-occurrence-of-a-sub-string-using-t-sql
FuzzyWuzzy
Fuzzy string matching for PHP, based on the python library of the same name. https://github.com/wyndow/fuzzywuzzy Requirements Installation Using Composer Usage use FuzzyWuzzy\Fuzz; use FuzzyWuzzy\Process; $fuzz = new Fuzz(); $process = new Process($fuzz); // $fuzz is optional here, and can be omitted. Simple Ratio >>> $fuzz->ratio(‘this is a test’, ‘this is a test!’) => 96 Partial Ratio >>> $fuzz->partialRatio(‘this … Read more