-------
#shplaying.php file

...

PHP Parsing of XML data has hig...

by mattlax.myopenid.com, February 04, 2012 19:32, 6 refactorings, tagged with speed, php, curl, cpu, debug

This script simply retrieve...

Bdcc24a6af71061f368915bb415644c7 Talk
SELECT p.pid, p.filename, AVG(v.vote) as avgv, COUNT(v.vote) as avgc
			FROM wp_ngg_pictures p
			LEFT JOIN wp_nggv_votes v ON (p.pid = v.pid)
...

PHP SQL Query Optimization

by https://www.google.com/accounts/o8/id?id=AItOawmyRuor7Z0aC0QytK3lMrz5h5jH73-dECw, December 13, 2011 21:03, 3 refactorings, tagged with speed, sql, optimization

This SQL query is currently...

55502f40dc8b7c769880b10874abc9d0 Talk
function demortonize($n)
{
	$row = $col = 0;
...

PHP De-interleaving bits. Again

by acmesquares.myopenid.com, January 21, 2011 16:36, 1 refactoring, tagged with speed, php, interleave, bitwise

Function needs to take a se...

1731ed1957835d6573324dba9e4774e3 Talk
$css = preg_replace('/\s\s+/', '', preg_replace('@/\\*([\\s\\S]*?)\\*/@','',$css));

PHP Remove Whitespace & Com...

by https://www.google.com/accounts/o8/id?id=AItOawlfLKQUOxClQ5HmGAqM_lnwQLGwjnkD4TI, January 06, 2011 20:34, 4 refactorings, tagged with speed, php, regex

I'm wondering if this is th...

55502f40dc8b7c769880b10874abc9d0 Talk
<?php
//class
	class Collection{
...

PHP How should I optimize this ...

by blackBear, December 07, 2009 23:13, 2 refactorings, tagged with speed, port

Hi everybody!
I'm kinda ne...

7aa9a6d812dc3a96d9f5e39fb07e84f5 Talk
<?php
function word_limiter( $text, $limit = 30, $chars = '0123456789' ) {
    if( strlen( $text ) > $limit ) {
...

PHP Limit amount of words displ...

by charliefrancis, July 30, 2009 09:37, 14 refactorings, tagged with speed, php, limit

It returns a string with a ...

Cb7e457f43aaafeb9975b9da8f209e4a Talk