Randolphです。こんにちわ。
> 翌指曜日の日付を取得(例えば翌週の月曜の日付)したいのでが、
>
> どんな方法があるのでしょうか?
<?php
$time = strtotime('next Monday');
print date('Y/m/d H:i:s', $time);
?>
でどうでしょうか。
http://php.planetmirror.com/manual/ja/function.strtotime.php
--
Randolph Carter
<yukestar @ gmail.com>