0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【初心者】PHPで文字列を反転してみる

Posted at

文字列を反転する

タイトル通り、文字列を反転する。
アルファベット・数字の場合で試してみる。
###アルファベットの場合

$n = "abcde";
echo strrev($n);
// 以下出力結果
edcba

###数字の場合

$n = "012345";
echo strrev($n);
// 以下出力結果
543210

このような結果となった。

因みに、平仮名とカタカナも試してみたが、文字化け?してしまったのかエラーだったのかわからないけれど、うまくいかなかった。
もう少ししっかり調べる必要があると思った。
しかしながら、この関数も頭の片隅に入れておいて損はないのかもしれない。

0
0
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?