Jump to content

Unrelated classes within classes(?)


pornophobic

Recommended Posts

Not sure how to describe what I'm trying to do here in the title, but here goes with what I am trying to accomplish.

 

I've got a few hundred lines of code in total so far, so I'll try to keep it as short as I can. I've got an application that I am programming using classes for each module and right now I am coding the base classes that I need in order for it to run (database, errors, logging, etc). What I'm doing for my database class is I have a query factory and it extends the MySQLi class so I can process, clean and code the rest of my app faster. I also have another, unrelated class "Error", which will be used for processing errors I might come across.

 

I'd rather do it this way instead of having to call trigger_error and error_log every time there is an error. I'd also not like to have to call a new instance of an object every time I need to use something from that class. Is there any way I can call a class within a class and return it as an object for all the methods within the class?

 

I've tried the methods below, but no luck I've tried others, but I'm trying to keep it brief and get what I'm trying to do across.

<?php

class QueryFactory extends MySQLi {

public  $err = new error(); //Doesn't work.
public  $err = error(); //Nope.

#This is the function that I need the $err object for.
function set($fields, $newvals) {

	if ( is_array($fields) && is_array($newvals) ) {

		if ( count($fields) != count($newvals) ) {
			//Instead of below, I want to do something like $err->('Array lengths must match for method', 256, $islogged = 1);
                              trigger_error('Array lengths must match for method', 256);
		}

	}
}

}

 

The thing is, I have a "run.inc.php" which does include and create new objects for running just the basic app and if I try to redeclare the error class in query.class.php, it gives me an error saying I can't do that, but if i try to call $err from the page that has all the classes defined it throws an error saying that my method is undeclared. I'd like my error class be available to every other class I create so I can display and log errors as needed. Any suggestions or links to point me where I'd like to go?

Link to comment
Share on other sites

Wonderful! That is EXACTLY what I was looking for! Thank you.

 

Edit: I'm going to put some code so it might help someone in the future.

 

query.class.php:

 

<?php

include 'error.class.php';

class QueryFactory extends MySQLi {

/*somefunctions*/

#This is the finished function from the original that i used in the first post. #

function set($fields, $newvals) {

	if ( is_array($fields) && is_array($newvals) ) {

		if ( count(array_diff_key($fields, $newvals)) !== 0 ) {
			try {
				throw new Error('Arrays must be same length.'); //Error is declared on error.class.php
			}
				catch(Error $e) {
					echo $e->showError();
				}
		}

	}
}

}

 

error.class.php:

 

<?php

class Error extends Exception {

function showError() {

	$message = self::getMessage();
	$line = self::getLine();
	$file = self::getFile();

	return 'Error: ' . $message . ' <br />In file: ' . $file . ':'. $line;
                //Above outputs something like 
                //Error: Some error message
               //In file: some_file.php:146


}
}

Link to comment
Share on other sites

Not in my case, I need to know the code from scratch and pretty much build my own framework suited to it's needs. Plus, I've heard that frameworks are no good if you want flexibility. I mean, for the hobbyist they may be great, but that's not what I'm doing.  I want and need to know as much as I can about PHP, and pretty much anything else I can get my eyes on. :)

 

Not turning down your idea, though. This project won't even be using pre-made javascript libraries or templating engines. It is being documented well, though. For my own sake and the sake of any possible future coders.

Link to comment
Share on other sites

Plus, I've heard that frameworks are no good if you want flexibility.

 

That depends on the kind of framework you chose for. A full-stack framework will limit you, a glue framework will not.

 

I mean, for the hobbyist they may be great, but that's not what I'm doing.

 

For the hobbyist? Frameworks like those of Zend are not merely for the hobbyist, if a hobbyist is even capable of getting past the steep learning curve.

 

I want and need to know as much as I can about PHP

 

Writing your own framework and using it's component will make you competent in PHP programming not in it's inner workings. If you want to learn what makes PHP tick you should start with the manual (especially the sections on Language Reference, PHP at the core, and the Appendices). Get your hands dirty, learn C and write a PHP extension.

 

It is being documented well, though. For my own sake and the sake of any possible future coders.

 

Documentation means nothing if the framework isn't properly tested.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.