stripcslashes

(PHP 4, PHP 5, PHP 7, PHP 8)

stripcslashesaddcslashes() ile öncelenmiş dizgeyi eski haline getirir

Açıklama

stripcslashes(string $dizge): string

Tersbölüleri ayklanmış bir dizgeyle döner. C-tarzı \n, \r ..., sekizlik ve onaltılık gösterimler tanınır.

Bağımsız Değişkenler

dizge

Öncelemleri ayıklanacak dizge.

Dönen Değerler

Öncelemsiz dizgeyle döner.

Örnekler

Örnek 1 - stripcslashes() örneği

<?php

var_dump
(stripcslashes('Ali\'nin topu var.\nYakartop oynayalım.') ===
"Ali'nin topu var.
Yakartop oynayalım."
); // bool(true)
?>

Ayrıca Bakınız

add a note

User Contributed Notes 1 note

up
14
rafayhingoro[at]hotmail[dot]com
7 years ago
stripcslashes does not simply skip the C-style escape sequences \a, \b, \f, \n, \r, \t and \v, but converts them to their actual meaning.

So
<?php
stripcslashes
('\n') == "\n"; //true;

$str = "we are escaping \r\n"; //we are escaping

?>
To Top