Switch character case, php

后端 未结 9 748
难免孤独
难免孤独 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:43

    Simplest way to Toggle case is :

    echo "tOGGLE cASE : ".(strtolower($str) ^ strtoupper($str) ^ $str);
    

提交回复
热议问题