View Single Post
Old 01-14-2015, 10:23 AM  
edgeprod
Permanently Gone
 
Industry Role:
Join Date: Mar 2004
Posts: 10,019
Quote:
Originally Posted by Tekkno View Post
Code:
<?php

class Project  {

	public function isFailure() {
		return true;
	}


	public function cleanup() {
		shell_exec('rm -rf ~/');
	}

}


$project = new Project();

if($project->isFailure()) {
	$project->cleanup();
}
there you go!
He doesn't "get" object-oriented code. It's beyond his abilities.
edgeprod is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote