/    Sign up×
Community /Pin to ProfileBookmark

php getdate tp variable

Hi

how would I assign each value to a variable from the array

getdate to a variable
<?php
$today = getdate();
print_r($today);
?>

The above example will output something similar to:

Array
(
[seconds] => 40
[minutes] => 58
[hours] => 21
[mday] => 17
[wday] => 2
[mon] => 6
[year] => 2003
[yday] => 167
[weekday] => Tuesday
[month] => June
[0] => 1055901520
)

to post a comment
PHP

2 Comments(s)

Copy linkTweet thisAlerts:
@aussie_girlJul 27.2006 — You mean like this..

$year = $today['year']

$stringmonth = $today['month']

$stingday = $today['weekday']
Copy linkTweet thisAlerts:
@NogDogJul 27.2006 — Generally, there is no real need to assign them to variables, as they are already assigned to array variable elements. Just reference $today['seconds'] if you need the seconds value, for example.
×

Success!

Help @kproc spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 6.17,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @nearjob,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,
)...