Help for this page

Select Code to Download


  1. or download this
    $encoded = encode_entities($input, '\W');
    $encoded = encode_entities($input, '^\w');
    
  2. or download this
    $encoded = encode_entities($input, '\\W'); # note double backslash
    
  3. or download this
    $encoded = encode_entities($input, '^a-zA-Z0-9_ ');