summaryrefslogtreecommitdiff
path: root/Zend/tests/null_to_non_nullable_special_func.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/null_to_non_nullable_special_func.phpt')
-rw-r--r--Zend/tests/null_to_non_nullable_special_func.phpt12
1 files changed, 12 insertions, 0 deletions
diff --git a/Zend/tests/null_to_non_nullable_special_func.phpt b/Zend/tests/null_to_non_nullable_special_func.phpt
new file mode 100644
index 0000000000..9dc1c96f72
--- /dev/null
+++ b/Zend/tests/null_to_non_nullable_special_func.phpt
@@ -0,0 +1,12 @@
+--TEST--
+Test null arg behavior for special functions
+--FILE--
+<?php
+
+$null = null;
+var_dump(strlen($null));
+
+?>
+--EXPECTF--
+Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in %s on line %d
+int(0)