Switch character case, php

后端 未结 9 873
难免孤独
难免孤独 2020-12-05 11:48

How can I swap around / toggle the case of the characters in a string, for example:

$str = \"Hello, My Name is Tom\";

After I run the code

9条回答
  •  感动是毒
    2020-12-05 12:46

    Very similar in function to the answer by Mark.

    preg_replace_callback(
        '/[a-z]/i',
        function($matches) {
            return $matches[0] ^ ' ';
        },
        $str
    )
    

提交回复
热议问题