Jump to content

arrays


whiteboikyle

Recommended Posts

How would you add on to arrays. For example if i was going to do a "error" class using an array

 

so lets say they type a username: bob

and bob is taken.

So thats 1 error

 

now if their passwords dont match password1:abc123 password2:abc1223

thats 2 errors

 

How would you make that generate into an array so it would be

 

$error = $array['Username Bob was taken', 'passwords didn't match'];

 

etc..

 

Then how would you empty the array?

also count the array? (i assume their are functions for these)

Link to comment
Share on other sites

Thanks that was actually simpler then i thought

 

I was thinking of doing a error class (something basic)

 

<?php

class error{

function __construct(){
	$error = array();
}

function is($what){
	$error[] = $what;
}

function countA(){
	count($this->$error);
}

function returnError(){
	foreach ($this->$error as $text) {
    		$theErrors = $text."<br />";
	}
	return $theErrors;
}

}

?>

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.