Search Results

3
votes
3answers
980 views

Elegant way to search for UTF-8 files with BOM?

For debugging purposes, I need to recursively search a directory for all files which start with a UTF-8 byte order mark (BOM). My current solution is a simple shell script: find -ty …
5
votes

How do i backup a SQL database using PHP?

Every database system comes with some program for dumping its contents. PostgreSQL: pg_dump …
0
votes

Create dynamic xml and send it with php class

The given code looks strange. I think the "<?php" lines needs to be moved up as the first line. You should also check whether any of your included files accidently perform some out …
2
votes

How do I detect groups of common strings in filenames

Simply build a histogram whose keys are modified by a regex: <?php # input $filenames = array("Birthday001.jpg", "Birthday002.jpg", "Birthday003.jpg", "Picknic1.jpg", "Picknic2. …
1
vote

Simple XML - Dealing With Colons In Nodes

The solution is explained in this nice article. You need the children() method for acce …