1--TEST--
2Hash: murmur3 seed deprecation of edge cases
3--FILE--
4<?php
5
6foreach (["murmur3a", "murmur3c", "murmur3f"] as $a) {
7	hash_init($a, options: ["seed" => "42"]);
8}
9
10?>
11--EXPECTF--
12Deprecated: hash_init(): Passing a seed of a type other than int is deprecated because it is the same as setting the seed to 0 in %s on line %d
13
14Deprecated: hash_init(): Passing a seed of a type other than int is deprecated because it is the same as setting the seed to 0 in %s on line %d
15
16Deprecated: hash_init(): Passing a seed of a type other than int is deprecated because it is the same as setting the seed to 0 in %s on line %d
17