php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #9237 date function parameters won't work on PWS
Submitted: 2001-02-13 05:26 UTC Modified: 2001-02-20 02:28 UTC
From: ajandris at parks dot lv Assigned:
Status: Not a bug Package: Date/time related
PHP Version: 4.0.4pl1 OS: NT 4.0 wrkst, win98
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: ajandris at parks dot lv
New email:
PHP Version: OS:

 

 [2001-02-13 05:26 UTC] ajandris at parks dot lv
On linux (built in) and IIS 4.0 (cgi vers) on nt4.0 wrkst i can use function for example:
 function getThisMonth(){
  $dat=getdate();
  return $dat[mon];
 }
 without problem.
On pws it reproduces error (description I don't remember -> it happens at home)
I should put mon in double quotes '"'. Then it works.
This error happens with other parameters like nmon, year ...
With quotes it works on linux and IIS 4.0 too.

Thanks,
Andris

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-02-13 12:44 UTC] cynic@php.net
I bet the text of the errmsg is somethign like this:

Warning:  Use of undefined constant x - assumed 'x' in ... on line ...

this is caused by error_reporting set high enough to trigger this warning. 
 [2001-02-20 01:56 UTC] ajandris at parks dot lv
Yes, the message I received is like this ...
I didn't receive that before.

Suggestions: don't set error reporting by default so high in installation wizard for win32 binaries.

Thanx,
Andris

 [2001-02-20 02:28 UTC] derick@php.net
The usage of $dat[mon] is not the way it shoudl work. Without the "'s, it's not possible for PHP to see whether mon is a constant, or an index. Therefore you should always use "mon" if you want mon to be the index of your array.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 14:01:30 2024 UTC