我有这个代码:
function toDataUri( $html )
{
# convert css URLs to data URIs
$html = preg_replace_callback( "#(url\([\'\"]?)([^\"\'\)]+)([\"\']?\))#", 'create_data_uri', $html );
return $html;
}
// callback function
private function create_data_uri( $matches )
{
$filetype = explode( '.', $matches[ 2 ] );
$filetype = trim(strtolower( $filetype[ count( $filetype ) - 1 ] ));
// replace ?whatever=value from extensions
$filetype = preg_replace('#\?.*#', '', $filetype);
$datauri = $matches[ 2 ];
$data = get_file_contents( $datauri );
if (! $data) return $matches[ 0 ];
$data = base64_encode( $data );
//compile and return a data: URI with the encoded image data
return $matches[ 1 ] . "data:image/$filetype;base64,$data" . $matches[ 3 ];
}
它基本上在 HTML 文件中搜索具有格式的 URL,url(path)
并将它们替换为 base 64 Data URIS。
问题是如果输入的 html 是几公斤,比如 10kb,返回最终响应需要很长时间。在这种情况下我们可以做任何优化吗?或者您有任何其他解决方案,当给定 html 时,它会搜索url(path)
匹配项并将它们转换为数据 uris ?