backslashit( string $string )
Adds backslashes before letters and before a number at the start of a string.
Description Description
Parameters Parameters
- $string
-
(string) (Required) Value to which backslashes will be added.
Return Return
(string) String with backslashes inserted.
Source Source
File: wp-includes/formatting.php
function backslashit( $string ) { if ( isset( $string[0] ) && $string[0] >= '0' && $string[0] <= '9' ) { $string = '\\\\' . $string; } return addcslashes( $string, 'A..Za..z' ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
0.71 | Introduced. |