PHP

PHP Menu

PHP

quoted_printable_decode() Function - Definition, Syntax, Parameters, Examples

Definition

The quoted_printable_decode() function decodes a quoted-printable string to an 8-bit ASCII string.

Syntax

quoted_printable_decode(string)

Parameters

Parameter Description
string Required. Specifies the quoted-printable string to be decoded.

Example

<?php
$hello = "Hello=0Aworld."; echo quoted_printable_decode($hello);

Introduction

PHP Basics

PHP Advance

PHP OOP

PHP Functions and Methods