whiteboikyle Posted January 21, 2010 Share Posted January 21, 2010 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 More sharing options...
sasa Posted January 21, 2010 Share Posted January 21, 2010 add element to array $error[] = 'Username Bob was taken'; $error[] = 'passwords didn't match'; etc. empty array $error = array(); count array count($error); Link to comment https://forums.phpfreaks.com/topic/189284-arrays/#findComment-999260 Share on other sites More sharing options...
whiteboikyle Posted January 21, 2010 Author Share Posted January 21, 2010 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.