We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
<?php // 3.ini // [test] // a = 1 // // 4.ini // [test] // b = 2 $config = new \Phalcon\Config\Adapter\Ini("3.ini"); $config2 = new \Phalcon\Config\Adapter\Ini("4.ini"); $config->merge($config2); print_r($config); //Phalcon\Config\Adapter\Ini Object //( // [test] => Phalcon\Config Object // ( // [b] => 2 // ) // //)
Is it intended behavior to overwrite section entirely? I would expect them to merge. Phalcon Version 1.2.3
The text was updated successfully, but these errors were encountered:
Same #1024
Sorry, something went wrong.
Oh, sorry, haven't noticed.
Does not matter, I just add up the connection :) I often repeat Submit
No branches or pull requests
Is it intended behavior to overwrite section entirely? I would expect them to merge.
Phalcon Version 1.2.3
The text was updated successfully, but these errors were encountered: