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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T15:56:38+00:00 2026-06-07T15:56:38+00:00

I have a problem with the following code. The variable $entry never becomes greater

  • 0

I have a problem with the following code. The variable $entry never becomes greater than 1. I want it to increment to be able to take all keywords and put them in a single variable. I can’t find the reason why $entry is being incremented. Thanks in advance! 🙂

function objectsIntoArray($arrObjData, $entry, $arrSkipIndices = array()) {

`$arrData = array();`
$kwords=array();

// if input is object, convert into array

if (is_object($arrObjData)) {

    $arrObjData = get_object_vars($arrObjData);

}

if (is_array($arrObjData)) {


    foreach ($arrObjData as $index => $value) {

    if ($index=="keywordterm"&&$index!="0"){
        $kword=$arrObjData[$index];
        //echo "arrObjData[$index]: ".$kword."</br></br>";
        $kwords[$entry]=$kword;
        //echo "keywords: ".$kwords."</br></br>";
        //echo "keywords[$entry]: ".$kwords[$entry]."</br></br>";
        $entry++;

    }
        if (is_object($value) || is_array($value)) {

            $value = objectsIntoArray($value, $entry, $arrSkipIndices); // recursive call

        }

        if (in_array($index, $arrSkipIndices)) {
            continue;
        }

        $arrData[$index] = $value;
        //echo "$arrData[$index]: ".$arrData[$index]."</br>";
    }


}

return $arrData;
}

`$entry=0;

$xmlUrl = "9424.xml"; // XML feed file/URL

$xmlStr = file_get_contents($xmlUrl);

$xmlObj = simplexml_load_string($xmlStr);

$arrXml = objectsIntoArray($xmlObj, $entry);`

With the 1st execution it shows:
keywords[0]: telecommunication computing

With the 2nd it shows:
keywords[0]: multi-agent systems

You see? It’s 0 again….

A little code from the xml:

<keywordset keywordtype="Inspec">
      <keyword>
        <keywordterm><![CDATA[telecommunication computing]]></keywordterm>
      </keyword>
      <keyword>
        <keywordterm><![CDATA[multi-agent systems]]></keywordterm>
       </keyword>
      <keyword>
        <keywordterm><![CDATA[state estimation]]></keywordterm>
      </keyword>
      <keyword>
        <keywordterm><![CDATA[control engineering computing]]></keywordterm>
      </keyword>
      <keyword>
        <keywordterm><![CDATA[telecommunication control]]></keywordterm>
      </keyword>
    </keywordset>
  • 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-07T15:56:39+00:00Added an answer on June 7, 2026 at 3:56 pm

    Im not entirely sure what you are trying to achieve here, but one thing I have noticed is that you are attempting to change the params without a reference to an object.

    Change

    function objectsIntoArray($arrObjData, $entry, $arrSkipIndices = array()) { 
    

    To

    function objectsIntoArray(&$arrObjData, &$entry, $arrSkipIndices = array()) { 
    

    It may, or may not help; but its something to try.

    Example of what I mean…

    function IncNumber($num)
    {
        $num++;
    }
    
    $num = 0;
    IncNumber($num);
    // $num will still be 0
    
    
    
    // Using & to declare a reference to the object
    function IncNumber2(&$num)
    {
        $num++;
    }
    IncNumber2($num);
    // $num will be 1
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Never thought I'd have this problem :) The following snippet of code works in
I have the following code, the problem is that my variable list @LocationList is
i'm new to jquery .I have problem in the following code .I saved it
I have a problem with the following code, when executing the call to cublasSrotg
I have a problem with the following code: protected void onDraw(Canvas canvas) { Paint
i am new in JSP,i have some problem with the following code : <%@
I have the following code, and i have a problem regarding changing the ringtone
I have a problem with BlackBerry JDE 6.0 The following code give me the
The following code summarizes the problem I have at the moment. My current execution
I have following problem, Code: String a=Yeahh, I have no a idea what's happening

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.