PHP Assign include content to a variable.

February 27th, 2008
So today i came across the need to include a file in php with limited access to data and not output it to the browser...

Basically all this does is buffer the output then get the buffer contents and return it...
// assigns the output of a file into a variable... lovely jubbly!
function get_include_contents($filename,$data='') {
    if (is_file($filename)) {
    	if (is_array($data)){
		extract($data);
    	}
        ob_start();
        include $filename;
        $contents = ob_get_contents();
        ob_end_clean();
        return $contents;
    }
    return false;
}

I suppose a usage example might be nice
$data = array('name'=>'Ross','hobby'=>'Writing Random Code');
$output = get_include_contents('my_file.php',$data);
// my_file.php will now have access to the variables $name and $hobby

easy as pi :-p

Earthquake!

February 27th, 2008
Wow, so I experienced my first earthquake last night, it was all very exciting... or not, i just kinda rocked in bed a bit. To be honest i assumed i was drunk and the room was spinning. But anyway, i survived to tell the tale!

In other news... not alot has been happening to be honest, few other piccies been added to my Flickr page so check them out.

Peace dude!

Update

February 20th, 2008

So alot has happened since my last post.

I celebrated my 21st birthday with the guys and Rachel, went into town for a drunken night out. (Photos available on Gallericious).

Yesterday was good fun, Andy (my boss) and I went on a business trip down to london to pitch to a company, we didn't get the job but we went for a good ol sight see while we were in Westminster, took a load of piccies that you can see on Gallericious or a select few "arty" ones on my flickr photostream. Not got alot planned for the rest of the week. Hopefully get time to go out with the camera again soon.

Laters

1st Interesting photo

February 13th, 2008


Wow! This photo is my first to be featured on Flickr's daily Explore page, basically they work out the 500 most interesting photos of that day and you can browse them on there website.

This photo came a brilliant 416th! Its a poo score but I don't care! This is the 1st time i'm on the list and i'm proud of it!
So please, view my photostream, hope you enjoy!

Update: It got to 397! Now its been dropped, oh the dizzying highs the crushing lows!

eBay Addiction

February 5th, 2008
Seriously, i just cant stop buying stuff on ebay, i'm bidding on this one thing at the moment and it has 28 minutes left and I just cant concentrate on anything else, i'm desperate to find out if i've won or not.

Update: Fuck yeah! I won it!

I also decided I'd total up my paypal account history... it would appear over the last few years I've spent over £1200 on eBay. Oops! Maybe i'll have a break for a while.
.