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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T10:05:44+00:00 2026-06-01T10:05:44+00:00

I was wondering if it would be possible to do this: $var = ‘$something

  • 0

I was wondering if it would be possible to do this:

$var = '$something == $somethingelse';

if ($var) { // Say hello }

and have it mean the same thing as this:

if ($something == $somethingelse) { // Say hello }

I know this will not work at the moment, because if ($var) checks to see if $var is set or not. But what I’m asking is: is there a method to allow this? Would appreciate an answer.

EDIT:
Basically I feel I should explain why I am doing this.
I want users to be able to control when they get a notification, based off some data that one of their “channels” has saved.

For instance, a user only wants to get a notification when their collected data is bigger than 60. So I would get them to choose two fields:

First field input of their number (int or float)

Second field choises (equals, <, >, =<, =>)

The last thing in this if statement would be their data collected by their “channel”.

I then want to be able to save their choice in a database, somehow, and then later act upon their choices.

  • 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-01T10:05:45+00:00Added an answer on June 1, 2026 at 10:05 am

    You say this string is being generated by you elsewhere. I suggest, instead of generating a string, generate an array.

    Like this: array('something','==','somethingelse').

    Now when you want to process this, you can replace the variables with their values, and then check the operator and run the correct operation.

    Something like this:

    $x = array('something','==','somethingelse');
    list($valA, $operation, $valB) = $x;
    
    // Replace values
    $valA = $$valA;
    $valB = $$valB;
    
    // Run operation
    $result = false;
    switch($operation){
        case '==':
            $result = $valA == $valB;
            break;
        default:
            break;
    }
    if($result) echo ":-)";
    

    DEMO: http://codepad.org/vaELABEm

    You can even use this to do other things, by adding more cases to the switch.

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

Sidebar

Related Questions

Wondering if this is possible in PHP Land: Let's say I have a class
I'm wondering if this is even possible. Basically I have a couple objects that
I am wondering what it would take to make something like this work: using
I'm wondering if this is possible. I have html like so: <p> <font face=Georgia>
Hey, I'm just wondering if it would be possible to convert videos to mp3
I was just wondering, for an LDAP structure, would it be possible for a
I am wondering what would be the best approach to store, for let's say
I have run a few using batch jobs, but, I am wondering what would
Am wondering if there would be any security flaw in this approach. I am
I'm just starting to learn LINQ, I'm wondering if it would be possible 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.