[ create a new paste ] login | about

BluePanther

Name: Aaron Maclean
Email:
Site/Blog:
Location: United Kingdom
Default language: PHP
Favorite languages: PHP, JS, Python
About:

Saved pastes by BluePanther:

PHP, pasted on Sep 15:
1
2
3
4
<?php
class gallery{
    private $filename = '';
    private $category = '';
...
view (52 lines)
PHP, pasted on Sep 14:
1
2
3
4
5
<?php
function replace_object($string,$array,$count){
    $pos = strpos($string, 'object');
    if($pos !== FALSE){
        $string = substr($string,0,$pos).$array[rand(0,$count)].substr($string,($pos+6));
...
view (16 lines, 1 line of output)
PHP, pasted on Sep 12:
1
2
3
4
5
<?php
/*
 * Gallery controller page - galleryadmin.php
 * This page is the controller for gallery management
 * This page should be used as the admin 'homepage'
...
view (66 lines)
PHP, pasted on Sep 11:
1
2
3
4
5
<?php
/*
 * Gallery controller page - galleryadmin.php
 * This page is the controller for gallery management
 * This page should be used as the admin 'homepage'
...
view (47 lines, 2 lines of output)
PHP, pasted on Aug 28:
1
2
3
4
5
<?php
function recur_trim($string){ 
    $trim = array( '\n', '\r', ' ', '\t', '\0', '\x0B' ); 
    $string = trim($string); 
    if(in_array(substr($string, 0, 1), $trim) || in_array(substr($string, -1))){ 
...
view (14 lines, 3 lines of output)