Summery Summery
Strip HTML comments
Syntax Syntax
Parameters Parameters
- $data
-
(Required) Data to strip comments from
Return Return
(string) Comment stripped string
Source Source
File: wp-includes/SimplePie/Misc.php
{
if (is_array($curl = curl_version()))
{
$curl = $curl['version'];
}
elseif (substr($curl, 0, 5) === 'curl/')
{
$curl = substr($curl, 5, strcspn($curl, "\x09\x0A\x0B\x0C\x0D", 5));
}
elseif (substr($curl, 0, 8) === 'libcurl/')
{
$curl = substr($curl, 8, strcspn($curl, "\x09\x0A\x0B\x0C\x0D", 8));
}
else
{
$curl = 0;
}