Skip to content

Instantly share code, notes, and snippets.

@violetyk
Created August 31, 2012 05:59
Show Gist options
  • Save violetyk/3549500 to your computer and use it in GitHub Desktop.
Save violetyk/3549500 to your computer and use it in GitHub Desktop.
[php]文字のインクリメンタル
<?php
$c = 'a';
echo ++$c;
echo chr(ord($c)+1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment