• PHP Video Tutorials

PHP - Function Quoted Printable Decode



Syntax

string quoted_printable_decode ( string $str )

Definition and Usage

It is used to convert the quoted printable string to 8 bit string

Return Values

It returns the 8 bit binary string

Parameters

Sr.No Parameters & Description
1

string

It is a string input

Example

Try out the following example

<?php
   $input = "tutorials = point.";
   echo quoted_printable_decode($input);
?>

This will produce following result −

tutorials = point.
php_function_reference.htm
Advertisements