PHP
 Computer >> コンピューター >  >> プログラミング >> PHP

PHPのstripcslashes()関数


stripclashes()は、円記号を削除するために使用されます。エスケープされていない文字列を返します。

構文

stripclashes(str)

パラメータ

  • str −チェックする文字列を指定します。

戻る

stripcslashes()関数は、エスケープされていない文字列を返します。

以下は例です-

<?php
   echo stripcslashes("Naomi \Watts!");
?>

以下は出力です-

出力

Naomi Watts!

  1. PHPのquoted_printable_encode()関数

    quoted_printable_encode()関数は、8ビット文字列を引用符で囲まれた印刷可能な文字列に変換するために使用されます。 構文 quoted_printable_encode(str) パラメータ str −変換する8ビット文字列を指定します。 戻る quoted_printable_encode()関数は、変換された文字列を返します。 例 以下は例です- <?php    echo quoted_printable_encode("www.example.com") ?> 出力 以下は出力です- www.

  2. PHPのquoted_printable_decode()関数

    quoted_printable_decode()は、引用された印刷可能な文字列を8ビット文字列に変換するために使用されます。 構文 quoted_printable_decode(str) パラメータ str −入力文字列 戻る quoted_printable_decode()関数は、8ビットのASCII文字列を返します。 例 以下は例です- 出力 Welcome aboard!