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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T08:48:54+00:00 2026-05-15T08:48:54+00:00

i have a function (below) which is used in my mysql abstraction class and

  • 0

i have a function (below) which is used in my mysql abstraction class and converts table names in fields like “tableName.fieldName” and replaces them with the specified variables (it’s useful for joins). the array of fields is very mixed, and so i need it to support recursion so that it can change the table names in an array(array(array("tableName.fieldName"))) but also for the standard array("tableName.fieldName","tableName.field2Name",...)

however, after debugging, i see that the variables $i and $fields_arr are maintaining the same values, even though i pass on a new value for $fields_arr and $i is set at the begining of the loop. how can i make this work so that $i and $fields_arr take the new values i pass for them?

/**
     * @param mixed $fields_arr         standard array ("table.field1","table.field2",...)
     * @param mixed $tables_and_vars    eg. ("table1" => "tableVar1", "table2" => "tableVar2", ...)
     * replaces all tablenames with desired tablevarnames
     */
    private function tablesToTableVars($fields_arr, $tables_and_vars) {
        // loop through every string
        $numFields = count($fields_arr);
        for($i = 0; $i < $numFields; $i++) {
            $field = $fields_arr[$i];
            if(is_numeric($field)) continue; // don't replace numbers
            if(is_array($field)) {
                $fields_arr[$i] = $this->tablesToTableVars($field, $tables_and_vars); // *** RECURSION ***
            } else {
                $tableNameLen = strpos($field, "."); // pos of period in string
                if(strpos($field, ".") === false) continue; // don't replace fields that dont have tablenames

                $searchTableName = substr($field, 0, $tableNameLen); // take 'table' from 'table.field'
                // see if field contains a table
                foreach($tables_and_vars as $tableName => $tableVar) {
                    if($searchTableName === $tableName) { // if it is the table name we're looking for
                        $fields_arr[$i] = $tableVar . substr($field, $tableNameLen); // change it to the variable name
                        break;
                    }
                }
            }
        }
        return $fields_arr;
    }
  • 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-15T08:48:55+00:00Added an answer on May 15, 2026 at 8:48 am

    can’t use integer indexes for an associative array =)

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

Sidebar

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.