Replies: 1 comment
-
You can make your own filter with such functionality. /**
* @param string|null $ip
* @return string
* @noinspection PhpUnused
*/
public static function inet_ntop(?string $ip): string {
if(empty($ip)){
return '';
}
return inet_ntop($ip);
} with |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
Is there a plan to add support for IP address filtering?
Something like:
https://fiddle.nette.org/latte/#4e3b1086c4
https://github.com/mlocati/ip-lib
https://docs.ansible.com/ansible/3/user_guide/playbooks_filters_ipaddr.html
Beta Was this translation helpful? Give feedback.
All reactions