PHP 8.5.0 Beta 1 available for testing

Voting

: two minus two?
(Example: nine)

The Note You're Voting On

Noname
3 years ago
<?php

declare (encoding='UTF-8');

$animalsstr = '🐀🐁🐂🐃🐄🐅🐆🐇🐈🐉🐊🐋🐌🐍🐎🐏🐐🐑🐒🐓🐔🐕🐖🐗🐘🐙'
. '🐚🐛🐜🐝🐞🐟🐠🐡🐢🐣🐤🐥🐦🐧🐨🐩🐪🐫🐬🐭🐮🐯🐰🐱🐲🐳🐴🐵'
. '🐶🐷🐸🐹🐺🐻🐼🐽🐾🐿';

$animals = mb_str_split($animalsstr);
foreach (
$animals as $animal) {
for (
$pos = 0; $pos < strlen($animal); $pos++) {
$byte = substr($animal, $pos);
echo
"Byte $pos of $animal has value " . ord($byte) . PHP_EOL;
}
}

?>

<< Back to user notes page

To Top