Answer the question
In order to leave comments, you need to log in
For goods, the article of the form XXXX 6653 needs to be converted to 6653 XXXX, can I somehow correct it not manually?
There is a site on phpshop, for goods the article of the form XXXX 6653 needs to be converted to 6653 XXXX, that is, swap numbers with letters, how can it be implemented?
Answer the question
In order to leave comments, you need to log in
$res = implode(' ', array_reverse(explode(' ', 'XXXX 6653')));
print_r($res); // 6653 XXXX
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question