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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T23:08:42+00:00 2026-05-15T23:08:42+00:00

I don’t know if the title explains it very well, so here’s what I’m

  • 0

I don’t know if the title explains it very well, so here’s what I’m trying to achieve.

With this script people can change the value of configuration variables on the fly like so:

Config::write('General.load', array('plugin1','plugin2'), true);

In that example, it changes the General.load config variable to an array, and sets the 3rd param to true, which means that it can be saved.

What I’m trying to incorporate is a method the save part, when a user calls Config::save() it loops through any config variables that were written to and which have had the 3rd parameter set to true.

It works perfect for booleans, strings, ints, floats etc. But when it comes to arrays, by default, it would just write “Array” to the file, instead of “array(‘plugin1′,’plugin2’)”.

So I went ahead and began developing a little script that converts arrays to a string based array.

Here is the function (I had to put it on pastebin, formatted strange here):
http://pastebin.com/HsUG9n5D

It works, to a degree.

If you supply it with something like this:

$array_to_string = '';
$array = array(
    'welcome',
    'to',
    'my',
    array('website')
);
array_build($array_to_string, $array, 0);
die($array_to_string);

It will output:

array('welcome', 'to', 'my', array('website')),

It nearly worked. However if I input something like this:

$array_to_string = '';
$array = array(
    'welcome',
    'to',
    'my',
    array('website'),
    array(array('goodbye', 'foo' => 'bar'))
);
array_build($array_to_string, $array, 0);
die($array_to_string);

The output is:

array('welcome', 'to', 'my', array('website')array(array('goodbye', 'foo' => 'bar'), ))

I’ve gone over the code, and I’m not quite sure what I can do to fix it. Variable referencing is still a tad complicated for me.

If anyone has any ideas on what I’ve done wrong, let us know.

Cheers.

  • 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-15T23:08:42+00:00Added an answer on May 15, 2026 at 11:08 pm

    Try

    • var_export — Outputs or returns a parsable string representation of a variable

    Example from PHP Manual:

    $a = array (1, 2, array ("a", "b", "c"));
    var_export($a);
    
    // output
    
    array (
      0 => 1,
      1 => 2,
      2 => 
      array (
        0 => 'a',
        1 => 'b',
        2 => 'c',
      ),
    )
    

    See my answer to PHP Reading File on how to use this in a config class.

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

Sidebar

Related Questions

Don't know why I can't reply to people on here with only a small
Don't know if anyone can help me with this or if it's even possible.
Don't know why but I can't find a solution to this. I have 3
Don't know if this is possible or not. But I'm trying to make it
Don't really know how to formulate the title, but it should be pretty obvious
(Don't know if this is strictly on-topic, but I don't see any better Stack
Don't know if this has been asked before, so point me to another question
Don't know how to explain it better but i'm trying to get a response
Don't know why people do not practice AJAX implementation for authentication systems. Is it
I don't know: if this works. if it's a good idea. what it is

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.