Skip to content

Instantly share code, notes, and snippets.

@aoirint
Last active April 26, 2024 00:04
Show Gist options
  • Save aoirint/5c6b2459dbe0718dddac6e472e3278ef to your computer and use it in GitHub Desktop.
Save aoirint/5c6b2459dbe0718dddac6e472e3278ef to your computer and use it in GitHub Desktop.
<?php
$title = "";
$N = 100*3; # multiplying "3" because "あ" is 3 bytes in utf-8
# $N = 74;
for ($i=0; $i<$N; $i++) {
$title = $title . "a";
}
?>
<!DOCTYPE html>
<meta charset="utf-8">
<title><?= $title ?></title>
<?php
$title = "";
$N = 75; # error
# $N = 74; # no error
for ($i=0; $i<$N; $i++) {
$title = $title . "あ";
}
?>
<!DOCTYPE html>
<meta charset="utf-8">
<title><?= $title ?></title>
<!DOCTYPE html>
<meta charset="utf-8">
<title>あああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああ</title>
<!DOCTYPE html>
<meta charset="utf-8">
<title>ああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああ</title>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment