You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In inc/helper-functions.php, within the ea_icon() function at L145, you're using the file_get_contents() function to inline SVG in the HTML.
I recently came around an old ticket on WP where someone suggested to use PHP readfile() instead of file_get_contents(), " as it doesn't cause it to be copied to memory before being output".
I know it doesn't make any visible difference in the loading, but I still wanted to hear your thoughts?
The text was updated successfully, but these errors were encountered:
Hi Bill,
In
inc/helper-functions.php,
within theea_icon()
function at L145, you're using thefile_get_contents()
function to inline SVG in the HTML.I recently came around an old ticket on WP where someone suggested to use PHP
readfile()
instead offile_get_contents()
, " as it doesn't cause it to be copied to memory before being output".I know it doesn't make any visible difference in the loading, but I still wanted to hear your thoughts?
The text was updated successfully, but these errors were encountered: