Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1047091
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T16:14:55+00:00 2026-05-16T16:14:55+00:00

I have the $validate variable in my model which contains: var $validate=array( username =>

  • 0

I have the $validate variable in my model which contains:

var $validate=array(

“username” => array(
“usernameValid” => array(
“rule” => “__alphaNumericDashUnderscore”,
“message” => “The username you entered is not valid!”
)
)
);

The question is: how do I return an error message from the __alphaNumericDashUnderscore() validation method and throw it in the message key in the rules array?

For example, this method, __alphaNumericDashUnderscore(), returns true or false, depending on the user input contains forbidden characters. But what if in this method, I would like to return which specific forbidden characters the user has typed and display them together with the messages? Something like "The username you entered is not valid! You have used the following forbidden characters: $chars".

Do you have any idea of how to achieve this? Thank you in advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T16:14:56+00:00Added an answer on May 16, 2026 at 4:14 pm

    By default, CakePHP validation method only return True or False. But it is still PHP. You can do anything. Here is my hack :

    <?php
    class User extends Model {
        var $name = 'User';
        var $invalidChars = "";
        var $validate=array("username" => array( "usernameValid" => array( 
            "rule" => "__alphaNumericDashUnderscore", 
            "message" => "The username you entered is not valid! You have used the following forbidden characters: $this->invalidChars" 
        )));
    
        function alphaNumericDashUnderscore($check) {
            // Process the value
            // Assign invalid char, $this->invalidChars = $chars
            // Return true or false
        }
    }
    ?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have to validate the data contains numeric or not and if it is
I have a Java program in which I have to validate an XML message
I have a variable like this: 33,100,200 I need to detect if it contains
I have to validate and concatenate multiple variable after validating them. <xsl:variable name=val1 select=//xpath/>
I have a string which is of format ABC1234567 var value = ABC1234567 var
I have methods which parameters can only handle certain types of variable. I have
I have an object $this->user which is of model User . This object is
As it is right now I have a Board object which contains an 8x8
when we have validate_presence_of :name in the model and then when we put in
I have to validate two SAML 2.0 assertion signatures. I can parse out all

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.