Search Results

1
vote

.hgignore for a CakePHP application?

You can add syntax: glob app/tmp/** to your .hgignore file and Mercurial will from that point on ignore all files under app/tmp/ with the …
8
votes

Return a PHP page as an image…

The PHP Manual has this example: <?php // open the file in a binary mode $name = './img/ok.png'; $fp …
1
vote

<?PHP, REGEX and me. A tragedy in three acts.

When using POSIX regular expressions (deprecated by PHP 5.3) you should write the tests like this: if (ereg('^[ …
1
vote

How to print list using hierarchical data structure?

Try this code instead: <?php echo "<ul>\n"; $tree = array( array('Food', 0), array('Fruit', 1), array('Red', 5), array('Cherry', 3), array('Strawberry' …
6
votes

Check if variable has a number php

You can use the strcspn function: if (strcspn($_REQUEST['q'], '0123456789') != strlen($_REQUE …
1
vote

Run PHP script when a new file is added via FTP

I would make a cronjob that looks for new files every 5 or 10 minutes. Then call the PHP script with wget for any new images found. Update: It seems you need t …
0
votes

Conditon related PHP Question

Wont the for-loop simply be skipped when there are no rows? Otherwise you might want to use mysql_nu …
3
votes

How to split a string with php

You want the strtok function. The manual gives this example: <?php $st …
2
votes

.po to .mo convertor in php?

I have not tried it, but it looks like this PEAR package might help you. It is unmaintained, but maybe you can be the new ma …
2
votes

Print PHP Call Stack

See debug_print_backtrace. I guess you can call flush afterwards if you want. …