1--TEST--
2Test null arg behavior for special functions
3--FILE--
4<?php
5
6$null = null;
7var_dump(strlen($null));
8
9?>
10--EXPECTF--
11Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in %s on line %d
12int(0)
13