Skip to main content

PHP: Merge/delete arrays with same subkeys



I'm writing a database class for my site based on a fluent interface. First, I collect all the meaningful terms then put them into the "stack", which is basically an array. Then, I sort them in order that they would appear in an actual SQL query.







const stmt_select = 1;

const stmt_insert = 2;

const stmt_delete = 3;



const sql_select = 10;

const sql_from = 11;

const sql_into = 12;

const sql_where = 13;

const sql_join = 14;

const sql_group = 15;

const sql_order = 16;

const sql_limit = 17;







For example, the query below (although in a total rubbish order, and purposely trying to throw the class off):







Query::Select('name', 'age', 'height')

->Order('a')

->From('table')

->From('asd')

->Group('a')

->Execute();







.. produces:







Array

(

[0] => Array

(

[0] => 10

[1] => Array

(

[0] => name

[1] => age

[2] => height

)



)



[1] => Array

(

[0] => 11

[1] => asd

)



[2] => Array

(

[0] => 11

[1] => table

)



[3] => Array

(

[0] => 15

[1] => a

)



[4] => Array

(

[0] => 15

[1] => a

)



)







The problem I have is that some array members I want to merge together (for example multiple ->Selects()/->Where() clauses) and some array members I want to delete entirely if there are multiple instances because it isn't possible for there to be more than one (for example ->Limit(), ->Order()), however I'm not entirely sure what the easiest way to do this is.





I was thinking something along the lines of a function I could call for each subkey;







DeleteDuplicates(sql_order);

Merge(sql_select);







Not sure how to write these without a massive performance hit per query.





Regards, kvanberendonck


Comments

Popular posts from this blog

[韓日関係] 首相含む大幅な内閣改造の可能性…早ければ来月10日ごろ=韓国

div not scrolling properly with slimScroll plugin

I am using the slimScroll plugin for jQuery by Piotr Rochala Which is a great plugin for nice scrollbars on most browsers but I am stuck because I am using it for a chat box and whenever the user appends new text to the boxit does scroll using the .scrollTop() method however the plugin's scrollbar doesnt scroll with it and when the user wants to look though the chat history it will start scrolling from near the top. I have made a quick demo of my situation http://jsfiddle.net/DY9CT/2/ Does anyone know how to solve this problem?

Why does this javascript based printing cause Safari to refresh the page?

The page I am working on has a javascript function executed to print parts of the page. For some reason, printing in Safari, causes the window to somehow update. I say somehow, because it does not really refresh as in reload the page, but rather it starts the "rendering" of the page from start, i.e. scroll to top, flash animations start from 0, and so forth. The effect is reproduced by this fiddle: http://jsfiddle.net/fYmnB/ Clicking the print button and finishing or cancelling a print in Safari causes the screen to "go white" for a sec, which in my real website manifests itself as something "like" a reload. While running print button with, let's say, Firefox, just opens and closes the print dialogue without affecting the fiddle page in any way. Is there something with my way of calling the browsers print method that causes this, or how can it be explained - and preferably, avoided? P.S.: On my real site the same occurs with Chrome. In the ex