最近在幫公司改舊系統的時候, 遇到一個需要把轉換出來的2進制反轉過來.
例如: 1100 要轉成 0011, 於是我就用了這個函數strrev 參考網址
範例 :
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$str = '1100'; | |
$str = strrev($str); | |
echo $str; | |
// 此時$str 就會變成0011 |