PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php function providerTypesOfArraysElements() { $arr = [28, 1, 7.3]; return array_map(function($val) { return [gettype($val)]; }, $arr); } function testTypeInArray($type) { $typesCorrect = ['integer', 'double']; $this->assertContains($type, $typesCorrect); } var_dump(providerTypesOfArraysElements());
Show:  
Copy Clear