1 2 3 4
function get_next_seat($table_id, $start_seat) {
$player_data = $this->admin->get_player_data($table_id);
...
PHP Get Next Turn
The below function is used ...
1 2 3 4
function create_link($string) {
$input = media_title($string);
...
PHP Prepare links - friendly URLs
by Memf,
September 04, 2008 05:57,
2 refactorings, tagged with php, short, friendly, friendly urls, url, URLs, prepare, code, memforis, function, memf, links, create link
Please help shorten the cod...
1 2 3 4
<?php class RequestFile ...
PHP Universal File Download Class
by Chris Dean,
August 16, 2008 11:21,
3 refactorings, tagged with php, 5, universal, file, download, class
After finding different hos...
1 2 3 4
/** * Scale an image according to input canvas dimensions. * No cropping will occur, the scaled image is "centered" to canvas. ...
PHP Resize image to canvas
The built in image function...
1 2 3 4
public function setClass($class){
switch($class){
case "050":
...
PHP switch statement a good idea?
I'm making a switch stateme...
1 2 3 4
/** * Split the supplied timestamp string, add the seconds and concatenate the whole thing back into timestamp format. * Note! that the mktime function will perform even if the supplied amount of seconds exceeds 59. It just adds them ...
PHP Adding seconds to a MySQL t...
by Juha Hollanti,
July 14, 2008 13:38,
4 refactorings, tagged with php, mysql timestamp, conversion, add seconds
Suggestions are welcome. I'...
1 2 3 4
<?php /* * This is a test of a rules based iterative algorithm... ...
PHP Rules Based Iterator
by James Stansfield,
June 15, 2008 13:52,
1 refactoring, tagged with php, loop, iterate, rules, array
I had need for an iterative...
1 2 3 4
class XML_QNC
{
private $reader = "";
...
PHP XMLReader to Array Class
XMLReader is fast and uses ...
1 2 3 4
<?php if (count($argv) != 3) die("Usage: $argv[0] <RSS feed URL> <output dir>\n"); ...
PHP Download all audio enclosur...
Given an RSS feed and an ou...
1 2 3 4
<?php function imagetrim(&$im){ ...
PHP Trim an image vertically
Originally from http://zava...
1 2 3 4
<?php $std = fopen("php://stdin", "r"); echo "TICTACTOE\n\n\n\n"; ...
PHP Command-Line TicTacToe
Just wondering if there are...
1 2 3 4
<?php require_once("arc/ARC2.php"); // http://arc.semsol.org/ ...
PHP Parse del.icio.us RSS feed
Uses ARC RDF parser from ht...
1 2 3 4
<?php // Eval encoded file decrypter // V 1 - 01/26/2008 ...
PHP Eval encoded file decoder
by ellisgl.myopenid.com,
January 26, 2008 17:08,
38 refactorings, tagged with php, decode, encrypted, eval
I was having an issue with ...
1 2 3 4
function db_cache_2($query)
{
// Query cache table
...
PHP DB Cache
by ellisgl.myopenid.com,
January 14, 2008 22:48,
8 refactorings, tagged with php, cache, mysql, update
It's a DB caching scheme th...
1 2 3 4
<?php function fetch($url,$start,$end){ ...
PHP Wikipedia API and text form...
by z3ro,
January 09, 2008 18:37,
1 refactoring, tagged with wikipedia, api, wikimedia, php, xml, regex, parser, formatting, plain html, html, convert
I need to add Wikipedia's i...
1 2 3 4
<? php if $userinput = "http://www." { ...
PHP Replace user input with link
by Mlopez,
January 02, 2008 01:39,
10 refactorings, tagged with replace, text, with, url, php, user, help, phrasing, parsing, http
im not quite sure where to ...
1 2 3 4
<?php function fecha () { ...
PHP Spanish date Function
by streo.myopenid.com,
November 13, 2007 11:54,
2 refactorings, tagged with date, spanish, php, StReO, 3v-doble
hi, I'm a student and i cre...
1 2 3 4
<?php class MyClass{ function __construct(){ ...
PHP Crossversion constructors f...
by fullo,
November 09, 2007 16:08,
3 refactorings, tagged with php, oop, object, constructor, php5, php4
Which one is the best cross...
So I don't currently have a...