You are here

public function Carbon::isSameDay in Persian Date for Drupal 8 8.4

Checks if the passed in date is the same day as the instance current day.

Parameters

\Drupal\persian_date\Library\Carbon\Carbon $dt:

Return value

bool

File

src/Library/Carbon/Carbon.php, line 1882

Class

Carbon
A simple API extension for DateTime

Namespace

Drupal\persian_date\Library\Carbon

Code

public function isSameDay(Carbon $dt) {
  return $this
    ->toDateString() === $dt
    ->toDateString();
}