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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T01:34:33+00:00 2026-05-28T01:34:33+00:00

I want to make variables and methods in php class. And want to use

  • 0

I want to make variables and methods in php class. And want to use double quotes as I always use not in OOP. But it doesn’t work, it shows an error. Why? Here’s my code:

class myClass {
     public $url = "http://www.somesite.com?index=$number";     // this var has url as a value  

     public $html = "<div>                                      // this var is an HTML code with $url var in href
                        <a href='$url'>Link</a>
                     </div>"; 

     public function echoHTML() {                              // and this is method to echo html code
          echo $this->html;
     }
}

$obj = new myClass();
$obj->echoHTML();

Problems are:

1) It shows error if double quotes are used here

public $url = "http://www.somesite.com?index=$number";

When I change double quotes for single quotes it works fine

public $url = 'http://www.somesite.com?index=$number';

Why? I used to always use double quotes in such not OPP coding and wouldn’t like to change my practice. Or I have to because single quotes are necessary in PHP OOP?

Also the same situation with the second variable $html. It makes me change outer double quotes for single quotes. And inner single qoutes to double ones. Like this:

public $html = '<div>                                      
                    <a href="$url">Link</a>
                </div>';

Ok, I change but here appears problem #2.

2) It doesn’t see value of variable in href. When page is loaded there’s $url in url but not http://www.somesite.com?index=$number as I expect. How to make him use a value of variable but not it’s name?

  • 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-28T01:34:34+00:00Added an answer on May 28, 2026 at 1:34 am

    The usage of single vs double quotes has nothing to do with OOP or classes.

    Double quotes tell PHP to evaluate the contents, so you can do stuff like echo "text $var text";. When you use single quotes, the contents is not evaluated so this would not work.

    Concatenating strings generally gives a performance advantage over double quotes, so single quotes are usually advisable when combining text and variables, as you are. So consider this:

    public $url  = 'http://www.somesite.com?index=' . $number;
    public $html = '<div><a href=\"' . $url . '\">Link</a></div>';
    

    Notice that you must escape the double quotes in the anchor tag. It’s also convention to use double quotes for attribute values.

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

Sidebar

Related Questions

I want to make a PHP class, lets say Myclass.php. Now inside that class
I want to make some variables I generate in b available in c: a
I have style sheet with a class name changebackgroundcolor i want make change in
I want to make an entity that has an autogenerated primary key, but also
I want to make a php ajax post.(post value without refresh the page) here
I want to make a php ajax post.(post value without refresh the page) here
I am passing $_GET[]; variables in a link but want to encrypt the values
I am a beginner to PHP and i want to make a static method
I created login from that when clicking submit button sends variables to login_success.php page.but
I want to make a variable length array in Javascript. Is this possible. A

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.