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
https://forums.phpfreaks.com/topic/189284-arrays/
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
https://forums.phpfreaks.com/topic/189284-arrays/#findComment-999262
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.