Tagged Questions

2
votes
3answers
614 views

Enumerating tables used in mysql query?

Is there any way to enumerate tables used in mysql query? Lets say I have query : SELECT * FROM db_people.people_facts pf INNER JOIN db_system.connections sm ON sm.source_id = pf.object_id INNER ...
1
vote
2answers
140 views

Any way to enumerate class members?

I have a class instance, and I want to enumerate its members. How can this be done?
0
votes
3answers
32 views

Numerate and echo array keys in PHP

In my php code, i'm collecting all validation error messages into one array called $errors. Is it possible to echo all array elements like that: "1) Error 1 2) Error 2 ... " and so on?
0
votes
3answers
139 views

how to enumerate items with preg_replace?

I need to add some tags before and after images on document and numerate them at once. HTML Document code is: .... <img src="http://img.example.com/img/mage1.jpg" alt="sometile"> <br> ...