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 7751373
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T11:31:55+00:00 2026-06-01T11:31:55+00:00

I need a definition for a macro-like string in php which would literally be

  • 0

I need a definition for a macro-like string in php which would literally be interpreted as this string, but I need is to refer to the line and file where the string is placed rather than my defs.php file…

define ("REDIRECT_FROM"," (".`____FILE____`." line:".`____LINE____`.")");

redirectTo("login.php",REDIRECT_FROM);

would result as:

redirected from abc.php line: 59

Hope I was clear. (the redirected from is implemented in the redirectTo() function of course)

Thanks!

  • 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-06-01T11:31:56+00:00Added an answer on June 1, 2026 at 11:31 am

    You can’t do this with define() – it sets constants, not macros.

    A possible solution is using a function and a backtrace:

    function called_from(){
      $trace = debug_backtrace();
      $item = $trace[0];
      return " ({$item['file']} line:{$item['line']})";
    }
    

    You would then call:

    redirectTo("login.php", called_from());
    

    You could also just build this logic into your redirectTo() function.

    An example: http://codepad.org/CGUXWgAB

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

Sidebar

Related Questions

I need to be override certain macro definition by my header file. And I
I need to call an external dll from c#. This is the header definition:
I am looking for a strange macro definition, on purpose: I need a macro
I understand what a datatype is (intuitively). But I need the formal definition. I
I need to programmatically extract method definition/implementation from Java source file, could you recommend
I need to parse a crontab-like schedule definition in Python (e.g. 00 3 *
I need to create an XML schema definition (XSD) that describes Java objects. I
I need to access a third-party COM server with following interface definition (idl): interface
Really need just some guidance : Topological sort by arcs definition (from my question)
Thinking about if we modify the definition of Hamiltonian path as we need to

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.