Skip to content

Instantly share code, notes, and snippets.

@fordnox
Created August 23, 2021 19:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fordnox/4a1f873e51770051bef7295e636c82db to your computer and use it in GitHub Desktop.
Save fordnox/4a1f873e51770051bef7295e636c82db to your computer and use it in GitHub Desktop.
For Gaby
<?php
$a=['Automattia','WordPresq','Jetpaci','WooCommercc'];
$data = array_map(function($value) {
$r = ['a'=>'c', 'q'=>'s', 'i'=>'k', 'c'=>'e'];
return substr($value, 0, strlen($value)-1).$r[$value[-1]];
}, $a);
var_dump($data);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment