Re: [PHP] [a proactive example of learning by hacking] Re: [PHP] Getting queries from files FYI

2005-08-23 Thread Robin Vickery
On 8/23/05, Jochem Maas <[EMAIL PROTECTED]> wrote:
> Jay Blanchard wrote:

> >
> > Also, sweet move with the array_reverse...
> >
> > $fileParts = array_reverse(explode('.', $theFile));
> > if("php" == $fileParts[0]){
> >
> > ...it prevents problems with funky file names containing more than one
> > period.

or you could just use glob('*.php') ?

-robin

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] [a proactive example of learning by hacking] Re: [PHP] Getting queries from files FYI

2005-08-23 Thread Jochem Maas

Jay Blanchard wrote:

[snip]
I figured as much - I was think of adding an optional param so that you
can optionally
add such an extra limit e,g:

cd /my/projects/stuff; php findqry.php --limit CHA > ./results.txt
[/snip]

argv[] is always available


indeed - I'll add something for that...



Also, sweet move with the array_reverse...

$fileParts = array_reverse(explode('.', $theFile));
if("php" == $fileParts[0]){

...it prevents problems with funky file names containing more than one
period.


hihi, I was just being pragmatic ... most of my files are named
*.class.php, *.inc.php or *.funcs.php etc etc ... the script was running but
finding nothing ;-)

btw if my file names are funky I am too?





--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php