芝麻web文件管理V1.00
编辑当前文件:/home/soundframestudio/smith.soundframestudios.net/wp-content/plugins/redirection/models/ip.php
ip = ''; $ip = sanitize_text_field( $ip ); $ip = explode( ',', $ip ); $ip = array_shift( $ip ); $ip = filter_var( $ip, FILTER_VALIDATE_IP ); // Convert to binary // phpcs:ignore $ip = @inet_pton( trim( $ip ) ); if ( $ip !== false ) { // phpcs:ignore $this->ip = @inet_ntop( $ip ); // Convert back to string } } public function get() { return $this->ip; } }