2
我想找到的Java的getBytes的PHP相當於()的函數 還沒有發現任何東西,但發現了一些答案,沒有具體。 http://www.phpbuilder.com/board/archive/index.php/t-10247795.html
感謝
我想找到的Java的getBytes的PHP相當於()的函數 還沒有發現任何東西,但發現了一些答案,沒有具體。 http://www.phpbuilder.com/board/archive/index.php/t-10247795.html
感謝
你的意思是字符串函數嗎?
$string = "texttexttext";
$bytes = array();
for($i = 0; $i < strlen($string); $i++){
$bytes[] = ord($string[$i]);
}
print_r($bytes);
--Output--
Array
(
[0] => 116
[1] => 101
[2] => 120
[3] => 116
[4] => 116
[5] => 101
[6] => 120
[7] => 116
[8] => 116
[9] => 101
[10] => 120
[11] => 116
)