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
Uh oh!
There was an error while loading. Please reload this page.
-
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