PluginProbe
Elementor Website Builder – more than just a page builder / 3.6.7
Elementor Website Builder – more than just a page builder v3.6.7
4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
← All changes | includes/utils.php +13 -0 3.6.63.6.7 View file →
@@ -778,5 +778,18 @@
778 778 ->find(function ( $p ) use ( $path ) {
779 779 return false !== strpos( $path, $p );
780 780 } );
781 781 }
782 +
783 + /**
784 + * @param $file
785 + * @param mixed ...$args
786 + * @return false|string
787 + */
788 + public static function file_get_contents( $file, ...$args ) {
789 + if ( ! is_file( $file ) || ! is_readable( $file ) ) {
790 + return false;
791 + }
792 +
793 + return file_get_contents( $file, ...$args );
794 + }
782 795 }