Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3217464
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T15:24:51+00:00 2026-05-17T15:24:51+00:00

In my script I need to make a cycle like this one: use DateTime;

  • 0

In my script I need to make a cycle like this one:

use DateTime;
for $j(0..3){
    my ($date) = DateTime->now->ymd;
    my ($k) = 0;
    while($k <= $j){
        $date = ($date->subtract( days => 7));
        $k++;
    }
print "$date\n";
}

which should get the current date, then one week ago, etc. Sadly, after getting the correct current date, it doesn’t work and I don’t know what’s wrong.

Error message is "Can't call method "subtract" without a package or object reference [...]", 

but I have no idea how to fix this.

If possible, I’d like to keep using DateTime only OR replacing it with another module (possibly no more than one).

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T15:24:51+00:00Added an answer on May 17, 2026 at 3:24 pm

    Datetime->now->ymd is a scalar (string, it appears), not an object/reference. You can’t call subtract on it because it doesn’t exist. You’ll probably just want to try omitting the ymd part when you assign to $date:

    my ($date) = DateTime->now;
    ...
    
    for(0..$j) {
        $date = ($date->subtract( days => 7));
    }
    
    ...
    

    If you want to access the ymd value, do it after you’ve created the object:

    my ($date) = DateTime->now;
    ...
    my ($ymd) = $date->ymd;
    

    See the CPAN page for more.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to write a java script. This is supposed to validate if the
A python script need to spawn multiple sub-processes via fork(). All of those child
I have Perl script and need to determine the full path and filename of
i have a problem, i'm working on a gallery php script and need help,
I need to script the creation of app pools and websites on IIS 6.0.
I need a script to run on Vista Ultimate to share an external drive
I am working on a bash script where I need to conditionally execute some
I'm building a fairly simple PHP script that will need to send some emails
I need to a script that will pull up the Task Manager in Vista
I need to have a script read the files coming in and check information

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.