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 781553
In Process

The Archive Base Latest Questions

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

I was seeing today the addslashes and addcslashes in php.net, but did not get

  • 0

I was seeing today the addslashes and addcslashes in php.net, but did not get the point on what is the difference between them and what are the characters escaped in these two.

<?php
  $originaltext = 'This text does NOT contain \\n a new-line!';
  $encoded = addcslashes($originaltext, '\\');
  $decoded = stripcslashes($encoded);
  //$decoded now contains a copy of $originaltext with perfect integrity
  echo $decoded; //Display the sentence with it's literal \n intact
?>

If i comment the $decoded variable and echo $encoded, i get the same value which is in the original string.

Can anyone clearly explain me the difference and use of these two.

  • 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-14T20:14:55+00:00Added an answer on May 14, 2026 at 8:14 pm

    addslashes only escapes

    single quote (‘), double quote ("), backslash () and NUL

    You can use addcslashes to escape an arbitrary set of characters.

    echo addcslashes("where's the party?", "party");
    

    yeilds

    whe\re’s \the \p\a\r\t\y?

    This can be useful when you need to create arbitrary control characters, or to prepare data for transport/use in arbitrary formats. For example, if you wanted to escape user input before using it as part of a regular expression, you could do the following

    preg_match('/match something here plus' . addcslashes($userInput, ".\\+*?[^]($)") . '/', $foo);
    

    However, this is equivalent to quotemeta, but this is just one example.


    More explanation

    It is sometimes confusing for people new to the method, and in my opinion against the defacto set forth by the rest of the PHP library for the second parameter to be a string list, as this doesn’t show up anywhere else in the library (to my knowledge).

    It makes more sense for some people, and would be more conforming, if the second parameter were an array.

    echo addcslashes("where's the party?", array("p", "a", "r", "t", "y"));
    

    It may help some to visualize it this way, which can then be transformed into the following:

    echo addcslashes(
        "where's the party?", 
        implode("", array("p", "a", "r", "t", "y"))
    );
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've been asking similar questions here today, but I'm seeing I think the issue
After seeing a previous post Making Applications programmed in .NET languages work on older
Long version... A co-worker asserted today after seeing my use of while (1) in
Today I coded a function that uses two nested foreach loops. After seeing, that
Seeing as Java doesn't have nullable types, nor does it have a TryParse(), how
Seeing this: http://www.suckless.org/wiki.html . A wiki based on Mercurial. Are there any other non-code
After seeing the cool new reputation tab on the stackoverflow user page, I was
I'm interested in seeing a good diff algorithm, possibly in Javascript, for rendering a
I'm seeing strange errors when my C++ code has min() or max() calls. I'm
This should be fine seeing as the CLR hasn't actually changed? The boxes running

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.