<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Quote Meta Characters in PHP</title>
</head>
<body>
<?php
// Sample string
$str = "Hello. (Are you there?)";
// Quoting meta characters and print
echo quotemeta($str);
?>
</body>
</html>