$wp_filesystem->get_contents()
$wp_filesystem->get_contents()
已替换
file_get_contents()
完全可以作为替代品。当然,它必须以
WP_Filesystem();
第一
下面是一个前后示例。。。
之前:
if ( (strpos ( file_get_contents ( $check_this_file ),
$check_this_string ) === false) ) {...}
之后:
WP_Filesystem();
if ( (strpos ( $wp_filesystem->get_contents ( $check_this_file ),
$check_this_string ) === false) ) {...}