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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T07:31:07+00:00 2026-05-31T07:31:07+00:00

I have written a class in php that is supposed to intake a formula

  • 0

I have written a class in php that is supposed to intake a formula with unknown numbers (an example formula would be x+y) and replace those numbers (x & y) with numbers inputted by the user (and passed to this class). My class looks like this:

                        <?php
        class formula
        {
            //declarations
                private $form="";
                private $variables="";
                private $values="";
            //end of declarations

            public function __construct($f, $vars, $vals)
            {
                $form=$f;
                $variables=$vars;
                $values=$vals;
            }

            public function getEquation()
            {
                //declarations
                $curChar="";
                $varCount=0;
                $charCount=0;
                $formulaChar=array();
                $i=0;
                $equation="";
                $size=strlen($this->form);  //number of characters in $form
                //end of declarations

                while($i<$size)
                {
                    $curChar=substr($this->form, $i);
                    $formulaChar[$i]=$curChar;
                    $i++;
                }

                while($charCount<$size)
                {
                    $varCount=0;
                    while($varCount<strlen($variables))
                    {
                        if($formulaChar[$charCount]==$variables[$varCount])
                        {
                            $formulaChar[$charCount]=$values[$varCount];
                        }
                        $varCount++;
                    }
                    $charCount++;
                }

                $charCount=0;

                while($charCount<count($formulaChar))
                {
                    $equation.=$formulaChar[$charCount];
                    $charCount++;
                }
                return $equation;
            }

        }
    ?>

For testing purposes, I created a page that passed some dummy values to the class, and then wrote the results to the screen:

        <?php
        include("formula.php");
        $formula="x+y";
        $variables=array("x", "y");
        $values=array(1,2);

        $test=new formula($formula, $variables, $values);
        echo $test->getEquation();

    ?>

When I run it however, I get an error saying I have an uninitalized string offset on line 65 ($equation.=$formulaChar[$charCount];). What exactly does that mean, and how do I fix it? I am guessing that I did something incorrectly with the array, but I am not 100 percent sure.

  • 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-31T07:31:08+00:00Added an answer on May 31, 2026 at 7:31 am

    it looks like you are working with strings. in PHP, concatenation is done with the ., i.e.

    $equation .=$formulaChar[$charCount];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class written in php that is supposed to find the labels
I have written a PHP class that gets the headers from a .xls spreadsheet
I have a LinkedIn API class that I've written for PHP that makes use
I have written a class in python that implements __str__(self) but when I use
I have written a class that will handle internal logging in my application. Now
I have written an apex class that will create a PDF quote and attach
In the library, right-click on a movieclip that you have written an ActionScript class
I have a class with several functions that can render images. // render.php class
I have written the following db interface class: <?php // dbinterface.php class db {
I have written a php class with 2 functions in but when i call

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.