免責事項:正規表現とpreg_replace
機能を使用して、特定の指標にプラス記号を挿入します:
私は以下のソリューションは愚かであるが、それはあなたが求めるまさにんだと思います
<?php
// find 3 groups: three first symbols, two after them, and two more
// find the pattern from the beginning of a string
$regex = '/^(.{3})(.{2})(.{2})/';
$str = 'ABSOLUTEWORKLEADSTOSUCCESS';
// perform a replace: use first group (3 symbols), insert a plus
// then use a second group (2 symbols) and insert another plus,
// then use a third group (2 more symbols) and insert the last plus
$out = preg_replace($regex, '$1+$2+$3+', $str);
echo $out;
プレビューhere。