ADOdb

Database Abstraction Layer for PHP

User Tools

Site Tools


v5:reference:connection:dow

dow

From Version 5.21.0-beta-2

See Also

day()
month()
year()

Syntax
string dow(
    string $fieldName,
)

Description

The method dow() is a routine that provides a portable Day-Of-Week number from 0 to 6, starting on a Sunday. Normal day of week functions use varying start days, and offset numbers. For more information on the subject, see sqlDate().

The start day and numbering matches the PHP Date function.

Parameters

$fieldName

The date/time fieldname to be processed


Values
0Sunday
1Monday
2Tuesday
3Wednesday
4Thursday
5Friday
6Saturday

Usage

$sql = "SELECT {$db->dow('birth_date')}
          FROM employees
          WHERE emp_no = 10
$dayOfWeek = $db->getOne($sql); 
v5/reference/connection/dow.txt · Last modified: 2016/04/22 03:47 by mnewnham